OFFSET
0,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Yang-Hui He and John McKay, Sporadic and Exceptional, arXiv:1505.06742 [math.AG], 2015.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
G.f.: (2 + 25*x - 55*x^2 + 40*x^3 - 10*x^4)/(1-x)^5. - Vincenzo Librandi, Jun 08 2015
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). - Vincenzo Librandi, Jun 08 2015
E.g.f.: (1/12)*(24 + 396*x + 192*x^2 + 26*x^3 + x^4)*exp(x). - G. C. Greubel, Mar 24 2022
MATHEMATICA
Table[(n^4 +20*n^3 +125*n^2 +250*n +24)/12, {n, 0, 50] (* Bruno Berselli, Jun 08 2015 *)
LinearRecurrence[{5, -10, 10, -5, 1}, {2, 35, 100, 210, 380}, 50] (* Harvey P. Dale, Oct 21 2018 *)
PROG
(Sage) [(n^4 +20*n^3 +125*n^2 +250*n +24)/12 for n in (0..50)] # Bruno Berselli, Jun 08 2015
(Magma) I:=[2, 35, 100, 210, 380]; [n le 5 select I[n] else 5*Self(n-1)-10*Self(n-2)+10*Self(n-3)-5*Self(n-4)+Self(n-5): n in [1..45]]; // Vincenzo Librandi, Jun 08 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jun 07 2015
STATUS
approved