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”).

A123009
Expansion of x*(1 + 5*x)/(1 - 2*x - 49*x^2).
1
1, 7, 63, 469, 4025, 31031, 259287, 2039093, 16783249, 133482055, 1089343311, 8719307317, 70816436873, 568878932279, 4607763271335, 37090594224341, 299961588744097, 2417362294480903, 19532842437422559, 157516437304409365
OFFSET
1,2
FORMULA
From Colin Barker, Oct 19 2012: (Start)
a(n) = 2*a(n-1) + 49*a(n-2) for n>2.
G.f.: x*(1 +5*x)/(1 -2*x -49*x^2). (End)
a(n) = (7*i)^(n-2)*(5*ChebyshevU(n-2, -i/7) + 7*i*ChebyshevU(n-1, -i/7)). - G. C. Greubel, Jul 13 2021
MATHEMATICA
M:= {{0, 7}, {7, 2}}; v[1]= {1, 1}; v[n_]:= v[n]= M.v[n-1];
Table[v[n][[1]], {n, 30}]
PROG
(Magma) [n le 2 select 7^(n-1) else 2*Self(n-1) + 25*Self(n-2): n in [1..31]]; // G. C. Greubel, Jul 13 2021
(Sage) [(7*i)^(n-2)*(5*chebyshev_U(n-2, -i/7) + 7*i*chebyshev_U(n-1, -i/7)) for n in (1..30)] # G. C. Greubel, Jul 13 2021
CROSSREFS
Sequence in context: A043027 A165759 A166153 * A219058 A182603 A320073
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Sequence edited by Joerg Arndt and Colin Barker, Oct 19 2012
STATUS
approved