OFFSET
1,2
FORMULA
E.g.f. A(x) satisfies:
(1) A(x - x*arcsin(x)) = x.
(2) A(x) = x/(1 - arcsin(A(x))).
(3) A(x) = x + Sum_{n>=1} d^(n-1)/dx^(n-1) x^n * arcsin(x)^n / n!.
(4) A(x) = x*exp( Sum_{n>=1} d^(n-1)/dx^(n-1) x^(n-1) * arcsin(x)^n / n! ).
a(n) ~ n^(n-1) * s*sqrt((1-s^2)/(2-s^2)) / (exp(n) * (s*(1-arcsin(s)))^n), where s = 0.46154056366132202860... is the root of the equation s/(sqrt(1-s^2)*(1-arcsin(s))) = 1. - Vaclav Kotesovec, Jan 13 2014
EXAMPLE
E.g.f.: A(x) = x + 2*x^2/2! + 12*x^3/3! + 124*x^4/4! + 1800*x^5/5! + ...
where A(x) = x/(1 - arcsin(A(x))).
The e.g.f. satisfies:
(3) A(x) = x + x*arcsin(x) + d/dx x^2*arcsin(x)^2/2! + d^2/dx^2 x^3*arcsin(x)^3/3! + d^3/dx^3 x^4*arcsin(x)^4/4! + ...
(4) log(A(x)/x) = arcsin(x) + d/dx x*arcsin(x)^2/2! + d^2/dx^2 x^2*arcsin(x)^3/3! + d^3/dx^3 x^3*arcsin(x)^4/4! + ...
MATHEMATICA
Rest[CoefficientList[InverseSeries[Series[x - x*ArcSin[x], {x, 0, 20}], x], x] * Range[0, 20]!] (* Vaclav Kotesovec, Jan 13 2014 *)
PROG
(PARI) {a(n)=n!*polcoeff(serreverse(x-x*asin(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*asin(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)*asin(x+x*O(x^n))^m/m!)+x*O(x^n))); n!*polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 13 2013
STATUS
approved