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 (4,-6,4,-1).
FORMULA
From G. C. Greubel, Oct 28 2019: (Start)
G.f.: (729 + 5084*x + 2165*x^2 + 8*x^3)/(1-x)^4.
E.g.f.: (729 + 7271*x + 7260*x^2 + 1331*x^3)*exp(x). (End)
MAPLE
seq((11*n+9)^3, n=0..30); # G. C. Greubel, Oct 28 2019
MATHEMATICA
(11 Range[0, 30]+9)^3 (* or *) LinearRecurrence[{4, -6, 4, -1}, {729, 8000, 29791, 74088}, 30] (* Harvey P. Dale, Feb 13 2018 *)
PROG
(Maxima) makelist( (11*n+9)^3, n, 0, 30); /* Martin Ettl, Oct 21 2012 */
(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