login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A370701
Expansion of e.g.f. exp(-x^3)/(1-x).
1
1, 1, 2, 0, 0, 0, 360, 2520, 20160, 120960, 1209600, 13305600, 179625600, 2335132800, 32691859200, 479480601600, 7671689625600, 130418723635200, 2356429211136000, 44772155011584000, 895443100231680000, 18794168013164544000, 413471696289619968000
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (-1)^k/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-x^3)/(1-x)))
(PARI) a(n) = n!*sum(k=0, n\3, (-1)^k/k!);
CROSSREFS
Cf. A370696.
Sequence in context: A193542 A193545 A336399 * A086260 A124505 A326855
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Feb 27 2024
STATUS
approved