login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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: A269787 A303927 A288693 * A127502 A175176 A362968
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 24 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)