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

A357088
E.g.f. satisfies A(x) * log(A(x)) = (exp(x*A(x)) - 1)^2 / 2.
2
1, 0, 1, 3, 16, 135, 1246, 14238, 192613, 2948025, 51071236, 985911003, 20952667660, 486857940660, 12275673296251, 333786662478363, 9737819506544272, 303399477464036175, 10054949172135522106, 353197317869395005258, 13108298181041284002769
OFFSET
0,4
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (2*k)! * (n-k+1)^(k-1) * Stirling2(n,2*k)/(2^k * k!).
PROG
(PARI) a(n) = sum(k=0, n\2, (2*k)!*(n-k+1)^(k-1)*stirling(n, 2*k, 2)/(2^k*k!));
CROSSREFS
Sequence in context: A129043 A182951 A247770 * A277673 A335356 A135746
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 11 2022
STATUS
approved