OFFSET
0,3
COMMENTS
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 17*x^4 + 171*x^5 + 3171*x^6 +...
where the logarithm of the g.f. equals the l.g.f. of A207138:
log(A(x)) = x + 3*x^2/2 + 7*x^3/3 + 51*x^4/4 + 761*x^5/5 + 17913*x^6/6 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, x^m/m*sum(k=0, m, binomial(m^2, k*(m-k))*x^k))+x*O(x^n)), n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 15 2012
STATUS
approved