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

A020534
a(n) = 8th Fibonacci polynomial evaluated at 2^n.
1
21, 408, 23184, 2298912, 274767936, 34561392768, 4404491583744, 563156132823552, 72064191275467776, 9223583144429488128, 1180598376127589781504, 151115943624696659976192, 19342820031363781631164416, 2475880299931694931871039488
OFFSET
0,1
FORMULA
G.f.: -3*(75264*x^3-24592*x^2+1054*x-7) / ((2*x-1)*(8*x-1)*(32*x-1)*(128*x-1)). - Colin Barker, May 03 2015
MAPLE
with(combinat, fibonacci):seq(fibonacci(8, 2^i), i=0..24);
MATHEMATICA
Table[Fibonacci[8, 2^i], {i, 0, 30}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
PROG
(PARI) Vec(-3*(75264*x^3-24592*x^2+1054*x-7)/((2*x-1)*(8*x-1)*(32*x-1)*(128*x-1)) + O(x^100)) \\ Colin Barker, May 03 2015
CROSSREFS
Sequence in context: A014903 A219308 A358698 * A106656 A083043 A162807
KEYWORD
nonn,easy
AUTHOR
STATUS
approved