OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..350
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 7*x^3 + 33*x^4 + 186*x^5 + 1213*x^6 +...
where
A(x) = 1 + x/(1-x) + x^2/((1-2*x)*(1-3*x)) + x^3/((1-3*x)*(1-4*x)*(1-5*x)) + x^4/((1-4*x)*(1-5*x)*(1-6*x)*(1-7*x)) + x^5/((1-5*x)*(1-6*x)*(1-7*x)*(1-8*x)*(1-9*x)) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^m/prod(k=m, 2*m-1, 1-k*x +x*O(x^n))), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 02 2014
STATUS
approved