A017441 a(n) = (11*n + 4)^5.
1024, 759375, 11881376, 69343957, 254803968, 714924299, 1680700000, 3486784401, 6590815232, 11592740743, 19254145824, 30517578125, 46525874176, 68641485507, 98465804768, 137858491849, 188956800000
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
Crossrefs
Programs
-
GAP
List([0..20], n-> (11*n+4)^5); # G. C. Greubel, Sep 18 2019
-
Magma
[(11*n+4)^5: n in [0..20]]; // G. C. Greubel, Sep 18 2019
-
Maple
seq((11*n+4)^5, n=0..20); # G. C. Greubel, Sep 18 2019
-
Mathematica
(11 Range[0,20]+4)^5 (* or *) LinearRecurrence[{6,-15,20,-15,6,-1}, {1024,759375,11881376,69343957,254803968,714924299},20] (* Harvey P. Dale, Jan 30 2017 *)
-
PARI
vector(20, n, (11*n-7)^5) \\ G. C. Greubel, Sep 18 2019
-
Sage
[(11*n+4)^5 for n in (0..20)] # G. C. Greubel, Sep 18 2019
Formula
From G. C. Greubel, Sep 18 2019: (Start)
G.f.: (1024 +753231*x +7340486*x^2 +9425846*x^3 +1788726*x^4 +16807*x^5 )/(1-x)^6.
E.g.f.: (1024 +758351*x +5181825*x^2 +5996155*x^3 +1903330*x^4 +161051*x^5)*exp(x). (End)