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 (9,-36,84,-126,126,-84,36,-9,1).
FORMULA
a(n) = 9*a(n-1) -36*a(n-2) +84*a(n-3) -126*a(n-4) +126*a(n-5) -84*a(n-6) +36*a(n-7) -9*a(n-8) +a(n-9). - Harvey P. Dale, Dec 25 2013
From G. C. Greubel, Oct 28 2019: (Start)
G.f.: (43046721 +25212579511*x +624040719397*x^2 +2924616734883*x^3 + 3674923678339*x^4 +1290563847493*x^5 +102733746903*x^6 +815728417*x^7 + 256*x^8)/(1-x)^9.
E.g.f.: (43046721 +25556953279*x +400867042081*x^2 +1200122639562*x^3 +
1189336320711*x^4 +488350759974*x^5 +90501965246*x^6 +7405124980*x^7 + 214358881*x^8)*exp(x). (End)
MAPLE
seq((11*n+9)^8, n=0..20); # G. C. Greubel, Oct 28 2019
MATHEMATICA
(11*Range[0, 20]+9)^8 (* or *) LinearRecurrence[{9, -36, 84, -126, 126, -84, 36, -9, 1}, {43046721, 25600000000, 852891037441, 9682651996416, 62259690411361, 281474976710656, 1001129150390625, 2992179271065856, 7837433594376961}, 20] (* Harvey P. Dale, Dec 25 2013 *)
PROG
(PARI) vector(21, n, (11*n-2)^8) \\ G. C. Greubel, Oct 28 2019
(Magma) [(11*n+9)^8: n in [0..20]]; // G. C. Greubel, Oct 28 2019
(Sage) [(11*n+9)^8 for n in (0..20)] # G. C. Greubel, Oct 28 2019
(GAP) List([0..20], n-> (11*n+9)^8); # G. C. Greubel, Oct 28 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved