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 (5,-10,10,-5,1).
FORMULA
From G. C. Greubel, Sep 18 2019: (Start)
G.f.: (256 +49345*x +206411*x^2 -92971*x^3 +2401*x^4)/(1-x)^5.
E.g.f.: (256 + 50369*x + 177991*x^2 + 109142*x^3 + 14641*x^4)*exp(x). (End)
MAPLE
seq((11*n + 4)^4, n=0..30); # G. C. Greubel, Sep 18 2019
MATHEMATICA
(11*Range[30] -7)^4 (* G. C. Greubel, Sep 18 2019 *)
PROG
(PARI) vector(30, n, (11*n-7)^4) \\ G. C. Greubel, Sep 18 2019
(Magma) [(11*n+4)^4: n in [0..30]]; // G. C. Greubel, Sep 18 2019
(Sage) [(11*n+4)^4 for n in (0..30)] # G. C. Greubel, Sep 18 2019
(GAP) List([0..30], n-> (11*n+4)^4); # G. C. Greubel, Sep 18 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Terms a(20) onward added by G. C. Greubel, Sep 18 2019
STATUS
approved