OFFSET
0,1
COMMENTS
Sum of the n-th powers of the first 5 Fibonacci numbers A000045(0..4).
LINKS
Index entries for linear recurrences with constant coefficients, signature (6,-11,6).
FORMULA
a(n)= 6*a(n-1)-11*a(n-2)+6*a(n-3).
a(n) = 1+A001550(n).
G.f.: ( -4+17*x-17*x^2 ) / ( (x-1)*(3*x-1)*(2*x-1) ).
MAPLE
with(combinat):f:=n-> sum(fibonacci(k)^n, k=0..4):seq(f(n), n=1..20);
MATHEMATICA
Table[2+2^n+3^n, {n, 0, 40}] (* or *) LinearRecurrence[{6, -11, 6}, {4, 7, 15}, 40](* Harvey P. Dale, Jun 08 2011 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Gary Detlefs, Nov 24 2010
EXTENSIONS
More terms from Harvey P. Dale, Jun 08 2011
STATUS
approved