OFFSET
0,4
COMMENTS
Compare to the identity:
Sum_{n>=0} x^n * Product_{k=1..n} (1 + t*k*x) / (1 + x + t*k*x^2) = (1+x)/(1-t*x^2).
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..200
EXAMPLE
G.f.: A(x) = 1 + x + x^2 + 3*x^3 + 5*x^4 + 19*x^5 + 49*x^6 + 203*x^7 +...
where
A(x) = 1 + x*(1+x)/(1+x+x^2) + x^2*(1+x)*(1+4*x)/((1+x+x^2)*(1+x+4*x^2)) + x^3*(1+x)*(1+4*x)*(1+9*x)/((1+x+x^2)*(1+x+4*x^2)*(1+x+9*x^2)) + x^4*(1+x)*(1+4*x)*(1+9*x)*(1+16*x)/((1+x+x^2)*(1+x+4*x^2)*(1+x+9*x^2)*(1+x+16*x^2)) +...
PROG
(PARI) {a(n)=polcoeff( sum(m=0, n, x^m*prod(k=1, m, (1+k^2*x)/(1+x+k^2*x^2 +x*O(x^n))) ), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 19 2013
STATUS
approved