OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1).
FORMULA
From G. C. Greubel, Sep 21 2019: (Start)
G.f.: (512 + 4811*x + 2636*x^2 + 27*x^3)/(1-x)^4.
E.g.f.: (512 + 6347*x + 6897*x^2 + 1331*x^3)*exp(x). (End)
MAPLE
seq((11*n+8)^3, n=0..40); # G. C. Greubel, Sep 21 2019
MATHEMATICA
(11*Range[50] - 3)^3 (* G. C. Greubel, Sep 21 2019 *)
PROG
(Magma) [(11*n+8)^3: n in [0..40]]; // Vincenzo Librandi, Sep 04 2011
(Maxima) makelist( (11*n+8)^3, n, 0, 30); /* Martin Ettl, Oct 21 2012 */
(PARI) a(n) = (11*n+8)^3; \\ Altug Alkan, Sep 08 2018
(Sage) [(11*n+8)^3 for n in (0..40)] # G. C. Greubel, Sep 21 2019
(GAP) List([0..40], n-> (11*n+8)^3); # G. C. Greubel, Sep 21 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved