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

A371023
E.g.f. satisfies log(A(x)) = x*A(x)^2 * (exp(x*A(x)^2) - 1).
1
1, 0, 2, 3, 112, 665, 23016, 292957, 10710960, 223877313, 9010822600, 266949248621, 12012620436312, 461111201730049, 23286625765980864, 1093225826724243045, 61822510319788946656, 3415325919719802626177, 215162865022831595415576
OFFSET
0,3
FORMULA
a(n) = n! * Sum_{k=0..floor(n/2)} (2*n+1)^(k-1) * Stirling2(n-k,k)/(n-k)!.
PROG
(PARI) a(n) = n!*sum(k=0, n\2, (2*n+1)^(k-1)*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 12 2024
STATUS
approved