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!)
A158779 Expansion of (1+8*x+72*x^2+648*x^3)/(1-x-6561*x^4). 0
1, 9, 81, 729, 7290, 66339, 597780, 5380749, 53210439, 488460618, 4410495198, 39713589387, 388827279666, 3593617394364, 32530876388442, 293091736356549, 2844187518245175, 26421911242667379, 239856991227235341 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Can be generated by multiplying the sum of the top-row elements of the n-th power of the matrix [ (0,3,0,0), (0,0,3,0), (0,0,0,3), (3,0,0,1/3)] by 3^n.
LINKS
FORMULA
a(n)= a(n-1)+6561*a(n-4). [From R. J. Mathar, Mar 31 2009]
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 = 3;
a = Table[t^n*v[n][[1]], {n, 0, 30}]
CoefficientList[Series[(1+8x+72x^2+648x^3)/(1-x-6561x^4), {x, 0, 20}], x] (* or *) LinearRecurrence[{1, 0, 0, 6561}, {1, 9, 81, 729}, 20] (* Harvey P. Dale, Jun 18 2015 *)
CROSSREFS
Sequence in context: A074118 A050739 A240945 * A047901 A061587 A033145
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 May 10 11:28 EDT 2024. Contains 372387 sequences. (Running on oeis4.)