OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
G.f.: -4096*x*(1+x)*(x^2 + 10*x + 1)/(x-1)^5. - R. J. Mathar, Jul 14 2016
From Elmo R. Oliveira, Nov 28 2025: (Start)
E.g.f.: 4096*x*(1 + 7*x + 6*x^2 + x^3)*exp(x).
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). (End)
MATHEMATICA
(8*Range[0, 20])^4 (* Harvey P. Dale, Aug 16 2016 *)
(* Alternative: *)
LinearRecurrence[{5, -10, 10, -5, 1}, {0, 4096, 65536, 331776, 1048576}, 30] (* Harvey P. Dale, Aug 16 2016 *)
PROG
(Magma) [(8*n)^4: n in [0..35]]; // Vincenzo Librandi, Jul 11 2011
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
STATUS
approved
