OFFSET
0,1
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
From G. C. Greubel, Sep 18 2019: (Start)
G.f.: (625 +62411*x +210011*x^2 +77041*x^3 +1296*x^4)/(1-x)^5.
E.g.f.: (625 +64911*x +200497*x^2 +114466*x^3 +14641*x^4)*exp(x). (End)
MAPLE
seq((11*n+5)^4, n=0..30); # G. C. Greubel, Sep 18 2019
MATHEMATICA
(11*Range[30] -6)^3 (* G. C. Greubel, Sep 18 2019 *)
LinearRecurrence[{5, -10, 10, -5, 1}, {625, 65536, 531441, 2085136, 5764801}, 30] (* Harvey P. Dale, Nov 29 2022 *)
PROG
(Magma) [(11*n+5)^4: n in [0..30]]; // Vincenzo Librandi, Sep 03 2011
(PARI) vector(30, n, (11*n-6)^4) \\ G. C. Greubel, Sep 18 2019
(Sage) [(11*n+5)^4 for n in (0..30)] # G. C. Greubel, Sep 18 2019
(GAP) List([0..30], n-> (11*n+5)^4); # G. C. Greubel, Sep 18 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved