OFFSET
0,3
COMMENTS
Row 2 of array A159314.
FORMULA
EXAMPLE
E.g.f.: A(x) = 1 +x +5*x^2/2! +61*x^3/3!+1481*x^4/4!+66361*x^5/5! +...
Related expansions:
log(A(x)) = x + 4*x^2/2! + 48*x^3/3! + 1216*x^4/4! + 57600*x^5/5! +...
A(2*x)^2 = 1 + 4*x + 48*x^2/2! + 1216*x^3/3! + 57600*x^4/4! +...
A(x)*A(2*x)^2 = 1 + 5*x +61*x^2/2! +1481*x^3/3! +66361*x^4/4! +...
PROG
(PARI) {a(n)=local(A=vector(n+4, j, 1+j*x)); for(i=0, n+3, for(j=0, n+2, m=n+3-j; A[m]=exp(intformal((A[m+1]+x*O(x^n))^(2^(m-1)))))); n!*polcoeff(A[3], n, x)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 19 2009
STATUS
approved