[go: up one dir, main page]

login
A227459
E.g.f. equals the series reversion of x - x*arcsinh(x).
1
1, 2, 12, 116, 1560, 26934, 568064, 14155560, 406944000, 13257282090, 482667389952, 19421597033244, 855882382817280, 40996140612918750, 2120732798100848640, 117829899317371274064, 6998139300214559047680, 442442520059710968274770, 29667507117025014218096640
OFFSET
1,2
COMMENTS
Note that arcsinh(x) = log(sqrt(1+x^2) + x).
FORMULA
E.g.f. A(x) satisfies:
(1) A(x - x*arcsinh(x)) = x.
(2) A(x) = x/(1 - arcsinh(A(x))).
(3) A(x) = sinh( (A(x) - x) / A(x) ).
(4) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) x^n * arcsinh(x)^n / n!.
(5) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(n-1) * arcsinh(x)^n / n! ).
a(n) ~ n^(n-1) * s*sqrt((1+s^2)/(2+s^2)) / (exp(n) * (s^2/sqrt(1+s^2))^n), where s = 0.54523200963327675622... is the root of the equation s = sqrt(1+s^2)*(1-arcsinh(s)). - Vaclav Kotesovec, Jan 13 2014
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 116*x^4/4! + 1560*x^5/5! + ...
where A(x) = x/(1 - arcsinh(A(x))).
The e.g.f. satisfies:
(4) A(x) = x + x*arcsinh(x) + d/dx x^2*arcsinh(x)^2/2! + d^2/dx^2 x^3*arcsinh(x)^3/3! + d^3/dx^3 x^4*arcsinh(x)^4/4! + ...
(5) log(A(x)/x) = arcsinh(x) + d/dx x*arcsinh(x)^2/2! + d^2/dx^2 x^2*arcsinh(x)^3/3! + d^3/dx^3 x^3*arcsinh(x)^4/4! + ...
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[x - x*ArcSinh[x], {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 13 2014 *)
PROG
(PARI) {a(n)=n!*polcoeff(serreverse(x-x*asinh(x +x*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, x^m*asinh(x+x*O(x^n))^m/m!)); n!*polcoeff(A, 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+x^2+x*O(x^n)); A=x*exp(sum(m=1, n, Dx(m-1, x^(m-1)*asinh(x+x*O(x^n))^m/m!)+x*O(x^n))); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
Cf. A227458.
Sequence in context: A302286 A035051 A214222 * A372200 A290840 A012628
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 13 2013
STATUS
approved