OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..400
FORMULA
a(n) ~ c / r^n, where r = A347968 = 0.419600352598356478498775753566700025318089363120016078... is the root of the equation QPochhammer(r) = r and c = 0.21842597743526022597060618810878279... - Vaclav Kotesovec, Aug 21 2018
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 4*x^3 + 9*x^4 + 20*x^5 + 46*x^6 + 106*x^7 +...
where
A(x) = 1 + x/(1-x) + x^2/((1-x)^2*(1-x^2)) + x^3/((1-x)^3*(1-x^2)^2*(1-x^3)) + x^4/((1-x)^4*(1-x^2)^3*(1-x^3)^2*(1-x^4)) +...
PROG
(PARI) {a(n)=polcoeff(sum(m=0, n, x^m/prod(k=1, m, (1-x^k +x*O(x^n))^(m-k+1))), n)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Feb 03 2012
STATUS
approved