The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A158784 Expansion of (1+4*x+14*x^2)/(1-2*x^2-64*x^3). 0
1, 4, 16, 72, 288, 1168, 5184, 20768, 85120, 373312, 1499392, 6194304, 26890752, 108349696, 450216960, 1937707520, 7834814464, 32689300480, 139682910208, 566806726656, 2371481051136, 10073319706624, 41018592608256 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Can be generated by multiplying the sum of the top row of the n-th power of the matrix [ (0,2,0), (0,0,2), (2,1/4,0)] by 2^n.
LINKS
FORMULA
a(n)= 2*a(n-2) +64*a(n-3). [From R. J. Mathar, Mar 31 2009]
MATHEMATICA
Clear[M, v, t, n];
M = {{0, t, 0}, {0, 0, t}, {t, 1/t^2, 0}};
v[0] = {1, 1, 1};
v[n_] := v[n] = M.v[n - 1];
CharacteristicPolynomial[M, x];
t = 2;
a = Table[t^n*v[n][[1]], {n, 0, 30}]
LinearRecurrence[{0, 2, 64}, {1, 4, 16}, 30] (* Harvey P. Dale, Apr 05 2019 *)
CROSSREFS
Sequence in context: A224660 A330610 A327541 * A180141 A226282 A013991
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Mar 26 2009
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 June 6 07:26 EDT 2024. Contains 373115 sequences. (Running on oeis4.)