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!)
A143136 E.g.f. satisfies: A(x) = x + sinh( A(x) )^2. 5

%I #14 Aug 16 2018 03:01:28

%S 1,2,12,128,1920,36992,870912,24232448,777999360,28309164032,

%T 1151292628992,51750540443648,2547747292446720,136336755956252672,

%U 7879446478581399552,489119124160488931328,32456290094449950720000

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

%C Radius of convergence is r = log(sqrt(2)+1)/2 - (sqrt(2)-1)/2 = 0.2335800...,

%C where A(r) = log(1+sqrt(2))/2 = arcsinh(1)/2 = 0.44068679...

%H Alois P. Heinz, <a href="/A143136/b143136.txt">Table of n, a(n) for n = 1..150</a>

%F E.g.f.: A(x) = Series_Reversion( x - sinh(x)^2 ).

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

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

%F E.g.f. derivative: A'(x) = 1/(1 - sinh(2*A(x))).

%F a(n) ~ 2^(n-5/4) * n^(n-1) / (exp(n) * (1-sqrt(2)+log(1+sqrt(2)))^(n-1/2)). - _Vaclav Kotesovec_, Jan 08 2014

%e A(x) = x + 2*x^2/2! + 12*x^3/3! + 128*x^4/4! + 1920*x^5/5! + ...

%e sinh(A(x)) = G(x) is the e.g.f. of A143137:

%e G(x) = x + 2*x^2/2! + 13*x^3/3! + 140*x^4/4! + 2101*x^5/5! + ...

%e Related expansions:

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

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

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

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

%o (PARI) {a(n)=local(A=x);for(i=0,n,A=x + sinh(A)^2);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); A=x+sum(m=1, n, Dx(m-1, sinh(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, sinh(x+x*O(x^n))^(2*m)/x/m!)+x*O(x^n))); n!*polcoeff(A, n)}

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

%Y Cf. A143134, A143137, A213643.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Jul 27 2008

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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)