OFFSET
0,1
LINKS
Colin Barker, Table of n, a(n) for n = 0..830
Index entries for linear recurrences with constant coefficients, signature (21,-84,64).
FORMULA
From Colin Barker, May 03 2015: (Start)
a(n) = 1 + 3*4^n + 16^n.
a(n) = 21*a(n-1) - 84*a(n-2) + 64*a(n-3) for n > 2.
G.f.: -(116*x^2 - 76*x + 5)/((x - 1)*(4*x - 1)*(16*x - 1)). (End)
E.g.f.: exp(x)*(1 + 3*exp(3*x) + exp(15*x)). - Stefano Spezia, Jul 31 2022
MAPLE
with(combinat, fibonacci):seq(fibonacci(5, 2^i), i=0..24);
MATHEMATICA
Table[Fibonacci[5, 2^i], {i, 0, 30}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
PROG
(PARI) Vec(-(116*x^2-76*x+5)/((x-1)*(4*x-1)*(16*x-1)) + O(x^100)) \\ Colin Barker, May 03 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved