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

A357028
E.g.f. satisfies A(x) = (1 - x * A(x))^log(1 - x * A(x)).
4
1, 0, 2, 6, 82, 820, 13568, 235368, 5111748, 123205248, 3404436312, 103998026880, 3516027852456, 129715202957184, 5198615642907360, 224652658604613120, 10419411912935774736, 516120552745366247424, 27198524267826237745824
OFFSET
0,3
FORMULA
E.g.f. satisfies log(A(x)) = log(1 - x * A(x))^2.
a(n) = Sum_{k=0..floor(n/2)} (2*k)! * (n+1)^(k-1) * |Stirling1(n,2*k)|/k!.
MATHEMATICA
m = 20; (* number of terms *)
A[_] = 0;
Do[A[x_] = (1 - x*A[x])^Log[1 - x*A[x]] + O[x]^m // Normal, {m}];
CoefficientList[A[x], x]*Range[0, m - 1]! (* Jean-François Alcover, Sep 12 2022 *)
PROG
(PARI) a(n) = sum(k=0, n\2, (2*k)!*(n+1)^(k-1)*abs(stirling(n, 2*k, 1))/k!);
CROSSREFS
Cf. A357036.
Sequence in context: A362581 A352284 A352313 * A245463 A325949 A055706
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 09 2022
STATUS
approved