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

A357965
Expansion of e.g.f. exp( (exp(x^4) - 1)/x^3 ).
2
1, 1, 1, 1, 1, 61, 361, 1261, 3361, 68041, 1073521, 8343721, 43290721, 432509221, 11472541081, 165124339381, 1457296102081, 12237047593681, 322364521392481, 7462073325643921, 103362225413048641, 1051987428484484941, 21127644716862970441
OFFSET
0,6
FORMULA
a(n) = n! * Sum_{k=0..floor(n/4)} Stirling2(n-3*k,n-4*k)/(n-3*k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp((exp(x^4)-1)/x^3)))
(PARI) a(n) = n!*sum(k=0, n\4, stirling(n-3*k, n-4*k, 2)/(n-3*k)!);
CROSSREFS
Cf. A353225.
Sequence in context: A130117 A361673 A373525 * A353225 A373520 A189174
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Oct 22 2022
STATUS
approved