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

A375799
Expansion of e.g.f. 1/(1 + (log(1 - x^3))/x^2).
3
1, 1, 2, 6, 36, 240, 1800, 16800, 178080, 2086560, 27518400, 399168000, 6286896000, 107623676160, 1984274772480, 39143052748800, 824445099878400, 18450791322163200, 437015358530150400, 10929450232744243200, 287728555881102336000, 7952251084537503744000
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n-3*k)! * |Stirling1(n-2*k,n-3*k)|/(n-2*k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1+log(1-x^3)/x^2)))
(PARI) a(n) = n!*sum(k=0, n\3, (n-3*k)!*abs(stirling(n-2*k, n-3*k, 1))/(n-2*k)!);
CROSSREFS
Cf. A353223.
Sequence in context: A074424 A002868 A375796 * A002869 A293120 A052845
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 29 2024
STATUS
approved