OFFSET
0,3
COMMENTS
Compare to: G(x)^2 = 1 + Integral 2*G(2*x) dx holds when G(x) = exp(x).
EXAMPLE
E.g.f. A(x) = 1 + x + 3*x^2/2! + 39*x^3/3! + 2313*x^4/4! + 579393*x^5/5! + 589702779*x^6/6! + 2411255004327*x^7/7! + 39486660963182289*x^8/8! + 2587442170418181942849*x^9/9! + ...
Related series.
A(x)^2 = 1 + 2*x + 8*x^2/2! + 96*x^3/3! + 4992*x^4/4! + 1184256*x^5/5! + 1186596864*x^6/6! + ... + 2*4^(n-1) * a(n-1)*x^n/n! + ...
PROG
(PARI) {a(n) = my(A=1+x); for(i=1, n, A = sqrt(1 + intformal(2*subst(A, x, 4*x) +x*O(x^n) ))); n!*polcoeff(A, n)}
for(n=0, 16, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 25 2018
STATUS
approved