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!)
A200319 E.g.f. satisfies: A(x) = x-1 + exp(A(x)^2). 3
1, 2, 12, 132, 2040, 40440, 979440, 28034160, 925858080, 34654465440, 1449705660480, 67029745527360, 3394417068282240, 186842736763562880, 11107390768144070400, 709223357051739129600, 48408150749346010022400, 3517279496138031162739200, 271050342684747077612160000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: Series_Reversion(1+x - exp(x^2)).
E.g.f.: x + Sum_{n>=1} d^(n-1)/dx^(n-1) (exp(x^2)-1)^n / n!.
E.g.f.: x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) (exp(x^2)-1)^n/x / n! ).
a(n) ~ (c/2)^(1/4) * n^(n-1) / (sqrt(1+c) * exp(n) * (1+sqrt(c/2)-1/sqrt(2*c))^(n-1/2)), where c = LambertW(1/2) = 0.351733711249195826... (see A202356). - Vaclav Kotesovec, Jan 10 2014
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 132*x^4/4! + 2040*x^5/5! +...
where A(1+x - exp(x^2)) = x and A(x) = x-1 + exp(A(x)^2).
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[1 - E^x^2 + x, {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 10 2014 *)
PROG
(PARI) {a(n)=n!*polcoeff(serreverse(1+x-exp(x^2+x^2*O(x^n))), n)}
for(n=1, 25, print1(a(n), ", "))
(PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x); A=x+sum(m=1, n, Dx(m-1, (exp(x^2+x*O(x^n))-1)^m)/m!); n!*polcoeff(A, n)}
(PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}
{a(n)=local(A=x+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, (exp(x^2+x*O(x^n))-1)^m/x)/m!)+x*O(x^n)); n!*polcoeff(A, n)}
CROSSREFS
Sequence in context: A286422 A073551 A215363 * A213640 A266489 A208830
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 15 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 August 2 10:23 EDT 2024. Contains 374838 sequences. (Running on oeis4.)