OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (6, -15, 20, -15, 6, -1).
FORMULA
From G. C. Greubel, Sep 22 2019: (Start)
G.f.: (32768 +2279491*x +9934926*x^2 +6542326*x^3 +536366*x^4 +243*x^5 )/(1-x)^6.
E.g.f.: (32768 +2443331*x +9690285*x^2 +8391955*x^3 +2196150*x^4 +161051* x^5)*exp(x). (End)
MAPLE
seq((11*n+8)^5, n=0..30); # G. C. Greubel, Sep 22 2019
MATHEMATICA
(11*Range[31] -3)^5 (* G. C. Greubel, Sep 22 2019 *)
PROG
(Magma) [(11*n+8)^5: n in [0..30]]; // Vincenzo Librandi, Sep 04 2011
(PARI) vector(30, n, (11*n-3)^5) \\ G. C. Greubel, Sep 22 2019
(Sage) [(11*n+8)^5 for n in (0..30)] # G. C. Greubel, Sep 22 2019
(GAP) List([0..30], n-> (11*n+8)^5); # G. C. Greubel, Sep 22 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved