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

%I #14 Jan 10 2014 17:04:32

%S 1,2,12,132,2040,40440,979440,28034160,925858080,34654465440,

%T 1449705660480,67029745527360,3394417068282240,186842736763562880,

%U 11107390768144070400,709223357051739129600,48408150749346010022400,3517279496138031162739200,271050342684747077612160000

%N E.g.f. satisfies: A(x) = x-1 + exp(A(x)^2).

%F E.g.f.: Series_Reversion(1+x - exp(x^2)).

%F E.g.f.: x + Sum_{n>=1} d^(n-1)/dx^(n-1) (exp(x^2)-1)^n / n!.

%F E.g.f.: x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) (exp(x^2)-1)^n/x / n! ).

%F 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

%e E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 132*x^4/4! + 2040*x^5/5! +...

%e where A(1+x - exp(x^2)) = x and A(x) = x-1 + exp(A(x)^2).

%t Rest[CoefficientList[InverseSeries[Series[1 - E^x^2 + x,{x,0,20}],x],x] * Range[0,20]!] (* _Vaclav Kotesovec_, Jan 10 2014 *)

%o (PARI) {a(n)=n!*polcoeff(serreverse(1+x-exp(x^2+x^2*O(x^n))),n)}

%o for(n=1,25,print1(a(n),", "))

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

%o {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)}

%o (PARI) {Dx(n, F)=local(D=F); for(i=1, n, D=deriv(D)); D}

%o {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)}

%Y Cf. A200320, A213640, A202356.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Nov 15 2011

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)