OFFSET
0,3
FORMULA
E.g.f. A(x) equals the formal inverse of function (x-1)/exp(x^2-1).
E.g.f. satisfies: A(x) = 1 + x*exp(A(x)^2-1).
E.g.f.: A(x) = 1 + Series_Reversion( x/exp(2*x + x^2) ).
E.g.f. satisfies: A(x/G(x)) = 1 + x where G(x) = exp(2*x+x^2) = x/Series_Reversion(A(x)-1) = e.g.f. of A000898.
a(n) ~ (1+sqrt(3))^n * exp((sqrt(3)/2-1)*n) * n^(n-1)/sqrt(2*(3+sqrt(3))). - Vaclav Kotesovec, Feb 26 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 42*x^3/3! + 704*x^4/4! + 16300*x^5/5! +...
where (A(x) - 1)/exp(A(x)^2-1) = x.
Related expansions.
(A(x)^2-1) = 2*x + 10*x^2/2! + 108*x^3/3! + 1840*x^4/4! + 43000*x^5/5! +...
(A(x)^2-1)^2 = 8*x^2/2! + 120*x^3/3! + 2328*x^4/4! + 58400*x^5/5! +...
(A(x)^2-1)^3 = 48*x^3/3! + 1440*x^4/4! + 43920*x^5/5! +...
(A(x)^2-1)^4 = 384*x^4/4! + 19200*x^5/5! + 846720*x^6/6! +...
MATHEMATICA
CoefficientList[1 + InverseSeries[Series[x/E^(2*x + x^2), {x, 0, 20}], x], x]*Range[0, 20]! (* Vaclav Kotesovec, Feb 26 2014 *)
PROG
(PARI) {a(n)=local(A=1+serreverse(x/exp(2*x+x^2+x^2*O(x^n)))); n!*polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*exp(A^2-1+x*O(x^n))); n!*polcoeff(A, n)}
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+x*sum(m=0, n, (A^2-1+x*O(x^n))^m/m!)); n!*polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 13 2011
STATUS
approved