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 18 2019: (Start)
G.f.: (125 +3596*x +4049*x^2 +216*x^3)/(1-x)^4.
E.g.f.: (125 +3971*x +5808*x^2 +1331*x^3)*exp(x). (End)
MAPLE
seq((11*n+5)^3, n=0..40); # G. C. Greubel, Sep 18 2019
MATHEMATICA
(11*Range[40] -6)^3 (* G. C. Greubel, Sep 18 2019 *)
PROG
(Magma) [(11*n+5)^3: n in [0..40]]; // Vincenzo Librandi, Sep 03 2011
(PARI) vector(40, n, (11*n-6)^3) \\ G. C. Greubel, Sep 18 2019
(Sage) [(11*n+5)^3 for n in (0..40)] # G. C. Greubel, Sep 18 2019
(GAP) List([0..40], n-> (11*n+5)^3); # G. C. Greubel, Sep 18 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved