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!)
A158778 G.f.: (1+3*x+12*x^2+48*x^3)/(1-x-256*x^4) 0
1, 4, 16, 64, 320, 1344, 5440, 21824, 103744, 447808, 1840448, 7427392, 33985856, 148624704, 619779392, 2521191744, 11221570880, 49269495104, 207933019456, 853358105920, 3726080251200, 16339070997824, 69569923978560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n)= +a(n-1) + 256*a(n-4).
MATHEMATICA
Clear[M, v, t, n];
M = {{0, t, 0, 0}, {0, 0, t, 0}, {0, 0, 0, t}, {t, 0, 0, 1/t}};
v[0] = {1, 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}]
PROG
(PARI) Vec((1+3*x+12*x^2+48*x^3)/(1-x-256*x^4)+O(x^44))
CROSSREFS
Sequence in context: A212443 A294036 A097679 * A227313 A155518 A005401
KEYWORD
nonn,easy
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 April 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)