login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123008 Expansion of x*(1 + 3*x)/(1 - 2*x - 25*x^2). 1
1, 5, 35, 195, 1265, 7405, 46435, 277995, 1716865, 10383605, 63688835, 386967795, 2366156465, 14406507805, 87966927235, 536096549595, 3271366280065, 19945146300005, 121674449601635, 741977556703395, 4525816353447665 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
From Colin Barker, Oct 19 2012: (Start)
a(n) = 2*a(n-1) + 25*a(n-2) for n>2.
G.f.: x*(1+3*x)/(1-2*x-25*x^2). (End)
a(n) = (5*i)^(n-2)*(3*ChebyshevU(n-2, -i/5) + 5*i*ChebyshevU(n-1, -i/5)). - G. C. Greubel, Jul 13 2021
MATHEMATICA
M:= {{0, 5}, {5, 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 5^(n-1) else 2*Self(n-1) + 25*Self(n-2): n in [1..31]]; // G. C. Greubel, Jul 13 2021
(Sage) [(5*i)^(n-2)*(3*chebyshev_U(n-2, -i/5) + 5*i*chebyshev_U(n-1, -i/5)) for n in (1..30)] # G. C. Greubel, Jul 13 2021
CROSSREFS
Sequence in context: A002737 A241779 A265976 * A038143 A352404 A356391
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Sequence edited by Joerg Arndt and Colin Barker, Oct 19 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 01:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)