OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..2000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
a(n) = 5*a(n-1)-10*a(n-2)+10*a(n-3)-5*a(n-4)+a(n-5) with a(0)=0, a(1)=1296, a(2)=20736, a(3)=104976, a(4)=331776. - Harvey P. Dale, Mar 28 2015
From Elmo R. Oliveira, Nov 27 2025: (Start)
G.f.: 1296*x*(1 + x)*(1 + 10*x + x^2)/(1-x)^5.
E.g.f.: 1296*x*(1 + 7*x + 6*x^2 + x^3)*exp(x).
MATHEMATICA
(6*Range[0, 30])^4 (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {0, 1296, 20736, 104976, 331776}, 30] (* Harvey P. Dale, Mar 28 2015 *)
PROG
(Magma) [(6*n)^4: n in [0..40]]; // Vincenzo Librandi, May 03 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved
