login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A158798
a(n) = a(n-1) + 64*a(n-2), a(0)=1, a(1)=8.
3
1, 8, 72, 584, 5192, 42568, 374856, 3099208, 27089992, 225439304, 1959198792, 16387314248, 141776036936, 1190564148808, 10264230512712, 86460336036424, 743371088849992, 6276832595181128, 53852582281580616, 455569868373172808, 3902135134394332232
OFFSET
0,2
FORMULA
G.f.: (1+7*x)/(1-x-64*x^2).
a(n) = (8*i)^n*( ChebyshevU(n, -i/16) - (7*i/8)*ChebyshevU(n-1, -i/16) ). - G. C. Greubel, Dec 22 2021
MATHEMATICA
LinearRecurrence[{1, 64}, {1, 8}, 30] (* Harvey P. Dale, Mar 09 2018 *)
PROG
(Magma) I:=[1, 8]; [n le 2 select I[n] else Self(n-1) + 64*Self(n-2): n in [1..41]]; // G. C. Greubel, Dec 22 2021
(Sage) [(8*i)^n*( chebyshev_U(n, -i/16) - (7*i/8)*chebyshev_U(n-1, -i/16) ) for n in (0..40)] # G. C. Greubel, Dec 22 2021
KEYWORD
nonn
AUTHOR
Philippe Deléham, Mar 27 2009
EXTENSIONS
Corrected and extended by Harvey P. Dale, Mar 09 2018
STATUS
approved