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 28 2019: (Start)
G.f.: (6561 +127195*x +189131*x^2 +28481*x^3 +16*x^4)/(1-x)^5.
E.g.f.: (6561 +153439*x +305041*x^2 +135762*x^3 +14641*x^4)*exp(x). (End)
MAPLE
seq((11*n+9)^4, n=0..30); # G. C. Greubel, Oct 28 2019
MATHEMATICA
(11Range[0, 20]+9)^4 (* Harvey P. Dale, Mar 27 2011 *)
PROG
(PARI) vector(31, n, (11*n-2)^3) \\ G. C. Greubel, Oct 28 2019
(Magma) [(11*n+9)^3: n in [0..30]]; // G. C. Greubel, Oct 28 2019
(Sage) [(11*n+9)^3 for n in (0..30)] # G. C. Greubel, Oct 28 2019
(GAP) List([0..30], n-> (11*n+9)^3); # G. C. Greubel, Oct 28 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved