OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2/2 + 17*x^3/2^3 + 177*x^4/2^6 + 3491*x^5/2^10 +...
log(A(x)) = A(x/2)*x + A(x/4)^2*x^2/2 + A(x/8)^3*x^3/3 + A(x/16)^4*x^4/4 +...
PROG
(PARI) {a(n)=local(A=1+x); for(n=2, n, A=exp(sum(k=1, n, subst(A, x, x/2^k+x*O(x^n))^k*x^k/k))); 2^(n*(n-1)/2)*polcoeff(A, n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 02 2009
STATUS
approved