OFFSET
0,1
COMMENTS
Apart from the signs, essentially the same as A054559. - Georg Fischer, Jan 18 2020
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (-6,-15,-20,-15,-6,-1).
FORMULA
G.f.: 30/(1+x)^6. - Georg Fischer, Jan 18 2020
From G. C. Greubel, Mar 22 2022: (Start)
a(n) = 30*(-1)^n*binomial(n+5, 5).
a(n) = 30*(-1)^n*A000389(n+5).
E.g.f.: (1/4)*(120 - 600*x + 600*x^2 - 200*x^3 + 25*x^4 - x^5)*exp(-x). (End)
MATHEMATICA
CoefficientList[Series[30/(1+x)^6, {x, 0, 30}], x] (* Georg Fischer, Jan 18 2020 *)
PROG
(Magma) [30*(-1)^n*Binomial(n+5, 5): n in [0..50]]; // G. C. Greubel, Mar 22 2022
(Sage) [30*(-1)^n*binomial(n+5, 5) for n in (0..50)] # G. C. Greubel, Mar 22 2022
CROSSREFS
KEYWORD
sign,easy
AUTHOR
N. J. A. Sloane, Jan 17 2020
EXTENSIONS
a(0) changed to 30, and more terms from Georg Fischer, Jan 18 2020
STATUS
approved