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

A375827
E.g.f. satisfies A(x) = exp(x^2 * (exp(x*A(x)) - 1)).
1
1, 0, 0, 6, 12, 20, 1110, 10122, 58856, 1239912, 23773770, 303367790, 5442263772, 135931189836, 2868815413646, 61708462976370, 1696559552295120, 48121891688969552, 1323641220801211026, 40678367069424137814, 1372011621943725532100
OFFSET
0,4
FORMULA
a(n) = n! * Sum_{k=0..floor(n/3)} (n-2*k+1)^(k-1) * Stirling2(n-2*k,k)/(n-2*k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\3, (n-2*k+1)^(k-1)*stirling(n-2*k, k, 2)/(n-2*k)!);
CROSSREFS
Cf. A375826.
Sequence in context: A358013 A371116 A356949 * A362892 A371304 A355508
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 30 2024
STATUS
approved