OFFSET
0,1
COMMENTS
4th Fibonacci polynomial evaluated at 2^n.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..140
Index entries for linear recurrences with constant coefficients, signature (10,-16)
FORMULA
G.f. 3*(1-6*x)/((8*x-1)*(2*x-1)). - R. J. Mathar, Jun 07 2016
a(n) = 3*A103334(n+1). - R. J. Mathar, Jun 07 2016
E.g.f.: (2 + exp(6*x))*exp(2*x). - Ilya Gutkovskiy, Jun 07 2016
MAPLE
with(combinat, fibonacci):seq(fibonacci(4, 2**i), i=0..24);
MATHEMATICA
Table[Fibonacci[4, 2^i], {i, 0, 30}] (* Vladimir Joseph Stephan Orlovsky, Nov 03 2009 *)
LinearRecurrence[{10, -16}, {3, 12}, 30] (* Harvey P. Dale, May 04 2018 *)
PROG
(Magma) [8^n + 2^(n+1): n in [0..30]]; // Vincenzo Librandi, Apr 26 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved