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

A375902
E.g.f. satisfies A(x) = (2 - exp(x * A(x)^(1/2)))^2.
0
1, -2, 4, -2, -52, 358, 12, -25986, 247228, 821398, -52933300, 534428926, 6201248220, -271179578490, 2375560802188, 75726973445374, -2740636867741828, 14280527041851958, 1501820173046702796, -46939564687781824002, -67963035486950641508
OFFSET
0,2
FORMULA
E.g.f.: A(x) = ( (1/x) * Series_Reversion(x / (2 - exp(x))) )^2.
a(n) = 2 * (n+1)! * Sum_{k=0..n} (-1)^k * Stirling2(n,k)/(n-k+2)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace((serreverse(x/(2-exp(x)))/x)^2))
(PARI) a(n) = 2*(n+1)!*sum(k=0, n, (-1)^k*stirling(n, k, 2)/(n-k+2)!);
CROSSREFS
KEYWORD
sign
AUTHOR
Seiichi Manyama, Sep 02 2024
STATUS
approved