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!)
A185190 E.g.f. satisfies: A(x) = x + arcsinh(A(x))^2. 1

%I #23 Jul 22 2018 08:46:51

%S 1,2,12,112,1440,23648,473088,11164032,303624960,9351301632,

%T 321717276672,12228424826880,508916576243712,23016333612318720,

%U 1124014843389984768,58949533609403842560,3304473379374295744512,197167421810210663301120,12476358616574849161101312

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

%C Radius of convergence of the e.g.f. A(x) is r = 0.2767308231516982...,

%C where r and A(r) satisfy: r = A(r) - (1 + A(r)^2)/4 and

%C A(r) = sinh( sqrt(1 + A(r)^2)/2 ), so that A(r) = 0.6241087588791013...

%F E.g.f. satisfies:

%F (1) A(x) = Series_Reversion( x - arcsinh(x)^2 ).

%F (2) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) arcsinh(x)^(2*n) / n!.

%F (3) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) (arcsinh(x)^(2*n)/x) / n! ).

%F (4) A'(x) = sqrt(1+A(x)^2) / (sqrt(1+A(x)^2) - 2*arcsinh(A(x))).

%F a(n) ~ n^(n-1) * sqrt((1+s^2)/(2-s)) / (exp(n) * ((4*s-1-s^2)/4)^(n-1/2)), where s = 0.62410875887910134116443... is the root of the equation 2*log(s+sqrt(1+s^2)) = sqrt(1+s^2). - _Vaclav Kotesovec_, Jan 11 2014

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

%e Related expansions:

%e arcsinh(A(x)) = x + 2*x^2/2! + 11*x^3/3! + 100*x^4/4! + 1269*x^5/5! + ...

%e arcsinh(A(x))^2 = 2*x^2/2! + 12*x^3/3! + 112*x^4/4! + 1440*x^5/5! + ...

%e Series expressions:

%e A(x) = x + arcsinh(x)^2 + d/dx arcsinh(x)^4/2! + d^2/dx^2 arcsinh(x)^6/3! + d^3/dx^3 arcsinh(x)^8/4! + ...

%e log(A(x)/x) = arcsinh(x)^2/x + d/dx (arcsinh(x)^4/x)/2! + d^2/dx^2 (arcsinh(x)^6/x)/3! + d^3/dx^3 (arcsinh(x)^8/x)/4! + ...

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

%o (PARI) {a(n)=local(A=x+O(x^n)); for(i=0, n, A=x + asinh(A)^2); n!*polcoeff(A, n)}

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

%o for(n=1,26,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, asinh(x+x*O(x^n))^(2*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, asinh(x+x*O(x^n))^(2*m)/x/m!)+x*O(x^n))); n!*polcoeff(A, n)}

%Y Cf. A143136, A205886, A214431.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Feb 05 2012

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 March 29 09:44 EDT 2024. Contains 371268 sequences. (Running on oeis4.)