OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
From G. C. Greubel, Oct 29 2019: (Start)
G.f.: (10000 + 144481*x + 176171*x^2 + 20731*x^3 + x^4)/(1-x)^5.
E.g.f.: (10000 + 184481*x + 334807*x^2 + 141086*x^3 + 14641*x^4)*exp(x). (End)
MAPLE
MATHEMATICA
(11*Range[0, 30]+10)^4 (* or *) LinearRecurrence[{5, -10, 10, -5, 1}, {10000, 194481, 1048576, 3418801, 8503056}, 30] (* Harvey P. Dale, Dec 24 2014 *)
PROG
(PARI) vector(31, n, (11*n-1)^4) \\ G. C. Greubel, Oct 29 2019
(Magma) [(11*n+10)^4: n in [0..30]]; // G. C. Greubel, Oct 29 2019
(Sage) [(11*n+10)^4 for n in (0..30)] # G. C. Greubel, Oct 29 2019
(GAP) List([0..30], n-> (11*n+10)^4); # G. C. Greubel, Oct 29 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved