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, Sep 18 2019: (Start)
G.f.: (64 + 3119*x + 4460*x^2 + 343*x^3)/(1-x)^4.
E.g.f.: (64 + 3311*x + 5445*x^2 + 1331*x^3)*exp(x). (End)
MAPLE
seq((11*n + 4)^3, n=0..40); # G. C. Greubel, Sep 18 2019
MATHEMATICA
(11*Range[40] -7)^3 (* G. C. Greubel, Sep 18 2019 *)
LinearRecurrence[{4, -6, 4, -1}, {64, 3375, 17576, 50653}, 40] (* Harvey P. Dale, Feb 10 2024 *)
PROG
(PARI) vector(40, n, (11*n-7)^3) \\ G. C. Greubel, Sep 18 2019
(Magma) [(11*n + 4)^3: n in [0..40]]; // G. C. Greubel, Sep 18 2019
(Sage) [(11*n + 4)^3 for n in (0..40)] # G. C. Greubel, Sep 18 2019
(GAP) List([0..40], n-> (11*n + 4)^3); # G. C. Greubel, Sep 18 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Terms a(23) onward added by G. C. Greubel, Sep 18 2019
STATUS
approved