OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..10000
Index entries for linear recurrences with constant coefficients, signature (9, -36, 84, -126, 126, -84, 36, -9, 1).
FORMULA
From Iain Fox, Dec 02 2017: (Start)
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), n > 8.
G.f.: (43046721 + 16596142552*x + 348944027548*x^2 + 1457583888744*x^3 + 1652522683270*x^4 + 520202222824*x^5 + 35893629468*x^6 + 214358872*x^7 + x^8)/(1-x)^9.
E.g.f.: exp(x)*(43046721 + 16940516320*x + 233161166800*x^2 + 650362944000*x^3 + 614936700000*x^4 + 243902400000*x^5 + 43988000000*x^6 + 3520000000*x^7 + 100000000*x^8). (End)
MATHEMATICA
(10 Range[0, 19] + 9)^8 (* Alonso del Arte, Dec 02 2017 *)
PROG
(Magma) [(10*n+9)^8: n in [0..20]]; // Vincenzo Librandi, Sep 01 2011
(PARI) a(n) = (10*n + 9)^8 \\ Iain Fox, Dec 02 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved