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”).

A375628
Expansion of e.g.f. exp(2*x^3) / (1 - x * exp(x^3)).
1
1, 1, 2, 18, 96, 600, 5760, 57960, 645120, 8285760, 117936000, 1842825600, 31374604800, 578334556800, 11493004723200, 244720360684800, 5555523785011200, 134002274473267200, 3422904611167641600, 92290617116425728000, 2619214995575033856000
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n-3*k+2)^k/k!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(2*x^3)/(1-x*exp(x^3))))
(PARI) a(n) = n!*sum(k=0, n\3, (n-3*k+2)^k/k!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 21 2024
STATUS
approved