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

A114543
Expansion of x*(1+x)/((1+2x)(1-2x-768x^2)).
0
0, 1, 1, 772, 2308, 597520, 2967568, 464830528, 3208753216, 363407352064, 3191137173760, 285479120733184, 3021751590913024, 225291467904913408, 2771288157631025152, 178566423666235555840, 2485482152393098412032
OFFSET
0,4
COMMENTS
The characteristic polynomial has the integer root -2 and the two real-valued roots 1+-sqrt(769).
FORMULA
a(n)=772*a(n-2)+1536*a(n-3), n>2. [_From Harvey P. Dale_, Nov 25 2011]
MATHEMATICA
M = {{0, 1, 0}, {0, 0, 1}, {1536, 772, 0}}; w[0] = {0, 1, 1}; w[n_] := w[n] = M.w[n - 1] a = Flatten[Table[w[n][[1]], {n, 0, 25}]]
LinearRecurrence[{0, 772, 1536}, {0, 1, 1}, 20] (* Harvey P. Dale, Nov 25 2011 *)
CROSSREFS
Sequence in context: A252558 A252559 A259696 * A233647 A285755 A264255
KEYWORD
nonn,less
AUTHOR
Roger L. Bagula, Feb 15 2006
STATUS
approved