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
G.f.: (7776 +1373201*x +8807866*x^2 +8104326*x^3 +1029826*x^4 +3125*x^5 )/(1-x)^6. - Colin Barker, Sep 17 2012
E.g.f.: (7776 +1412081*x +7189215*x^2 +7140815*x^3 +2049740*x^4 + 161051*x^5)*exp(x). - G. C. Greubel, Sep 19 2019
MAPLE
seq((11*n+6)^5, n=0..30); # G. C. Greubel, Sep 19 2019
MATHEMATICA
(11*Range[30] -5)^5 (* G. C. Greubel, Sep 19 2019 *)
PROG
(Magma) [(11*n+6)^5: n in [0..30]]; // Vincenzo Librandi, Sep 03 2011
(PARI) vector(30, n, (11*n-5)^5) \\ G. C. Greubel, Sep 19 2019
(Sage) [(11*n+6)^5 for n in (0..30)] # G. C. Greubel, Sep 19 2019
(GAP) List([0..30], n-> (11*n+6)^5); # G. C. Greubel, Sep 19 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved