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

A357092
E.g.f. satisfies A(x)^A(x) = (1 - x * A(x))^log(1 - x * A(x)).
1
1, 0, 2, 6, 58, 580, 7568, 119448, 2195772, 46413792, 1106667072, 29403619080, 861570383232, 27600893313552, 959793100481616, 36006430081497120, 1449539553826089360, 62334045415459189248, 2851721291051846833152, 138299011223141244621024
OFFSET
0,3
FORMULA
E.g.f. satisfies A(x) * log(A(x)) = log(1 - x * A(x))^2.
a(n) = Sum_{k=0..floor(n/2)} (2*k)! * (n-k+1)^(k-1) * |Stirling1(n,2*k)|/k!.
PROG
(PARI) a(n) = sum(k=0, n\2, (2*k)!*(n-k+1)^(k-1)*abs(stirling(n, 2*k, 1))/k!);
CROSSREFS
Cf. A357028.
Sequence in context: A209521 A357026 A366366 * A132525 A316198 A074167
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 11 2022
STATUS
approved