OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
FORMULA
From G. C. Greubel, Sep 19 2019: (Start)
G.f.: (117649 +33188681*x +359208382*x^2 +642375742*x^3 +229267417*x^4 +11361953*x^5 +4096*x^6)/(1-x)^7.
E.g.f.: (117649 +33894575*x +263458261*x^2 +402241510*x^3 +193554020*x^4 +33337557*x^5 +1771561*x^6)*exp(x). (End)
MAPLE
seq((11*n+7)^6, n=0..20); # G. C. Greubel, Sep 19 2019
MATHEMATICA
(11*Range[21] -4)^6 (* G. C. Greubel, Sep 19 2019 *)
PROG
(Magma) [(11*n+7)^6: n in [0..20]]; // Vincenzo Librandi, Sep 04 2011
(Maxima) makelist((11*n+7)^6, n, 0, 20); /* Martin Ettl, Oct 21 2012 */
(PARI) vector(20, n, (11*n-4)^6) \\ G. C. Greubel, Sep 19 2019
(Sage) [(11*n+7)^6 for n in (0..20)] # G. C. Greubel, Sep 19 2019
(GAP) List([0..20], n-> (11*n+7)^6); # G. C. Greubel, Sep 19 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved