OFFSET
0,3
COMMENTS
Compare to g.f. C(x) of the Catalan numbers, where C(x) = 1 + x*C(x)^2:
C(x)^2 = exp( Sum_{n>=1} binomial(2*n,n) * x^n/n ).
FORMULA
E.g.f.: exp( Sum_{n>=1} x^n/n * Product_{k=1..n} (1-x^(n+k))/(1-x^k) ).
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 15*x^3/3! + 104*x^4/4! + 750*x^5/5! +...
where
log(A(x)) = x*(1-x^2)/(1-x) + x^2*(1-x^3)*(1-x^4)/(2*(1-x)*(1-x^2)) + x^3*(1-x^4)*(1-x^5)*(1-x^6)/(3*(1-x)*(1-x^2)*(1-x^3)) + x^4*(1-x^5)*(1-x^6)*(1-x^7)*(1-x^8)/(4*(1-x)*(1-x^2)*(1-x^3)*(1-x^4)) +...
PROG
(PARI) {a(n)=n!*polcoeff(exp(sum(m=1, 31, x^m/m*prod(k=1, m, (1-x^(m+k))/(1-x^k)+x*O(x^n)))), n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 01 2013
STATUS
approved