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

A195895
E.g.f. satisfies: A(x) = exp(-1) * Sum_{n>=0} exp(x*A(x)^n)/n!.
4
1, 1, 3, 19, 201, 2996, 57613, 1357987, 37921761, 1224420067, 44884358461, 1841710133330, 83634349451425, 4164470926316377, 225629247763909837, 13214729079087267931, 831997985912417838017, 56038514134260089791916, 4020820086886704204188797
OFFSET
0,3
LINKS
FORMULA
E.g.f. satisfies: A(x) = Sum_{n>=0} exp(A(x)^n - 1)*x^n/n!. [From Paul D. Hanna, Sep 27 2011]
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 19*x^3/3! + 201*x^4/4! + 2996*x^5/5! +...
where
A(x) = exp(-1)*(exp(x) + exp(x*A(x)) + exp(x*A(x)^2)/2! + exp(x*A(x)^3)/3! +...).
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=exp(-1)*sum(m=0, 2*n+10, exp(x*A^m+x*O(x^n))/m!)); round(n!*polcoeff(A, n))}
(PARI) {a(n)=local(A=1+x, X=x+x*O(x^n)); for(i=1, n, A=1+sum(m=1, n, exp(A^m-1)*X^m/m!)); n!*polcoeff(A, n)}
CROSSREFS
Cf. A195947.
Sequence in context: A303927 A377740 A288693 * A127502 A175176 A362968
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 24 2011
STATUS
approved