OFFSET
0,2
COMMENTS
EXAMPLE
G.f.: A(x) = 1 + 2*x + 5*x^2 + 32*x^3 + 796*x^4 + 77508*x^5 +...
where the logarithm of the g.f. equals the l.g.f. of A207136:
log(A(x)) = 2*x + 6*x^2/2 + 74*x^3/3 + 2942*x^4/4 + 379502*x^5/5 +...
PROG
(PARI) {a(n)=polcoeff(exp(sum(m=1, n, x^m/m*sum(k=0, m, binomial(m^2, k*(m-k))))+x*O(x^n)), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 15 2012
STATUS
approved