A206622 G.f.: Product_{n>0} ( (1+x^n)/(1-x^n) )^(n^2).
1, 2, 10, 36, 118, 376, 1148, 3376, 9654, 26894, 73192, 195188, 510948, 1315048, 3332720, 8326448, 20529526, 49998884, 120379574, 286726340, 676057144, 1578880480, 3654180236, 8385122192, 19085029540, 43103203626, 96630606968, 215105226728, 475608824400
Offset: 0
Keywords
Examples
G.f.: A(x) = 1 + 2*x + 10*x^2 + 36*x^3 + 118*x^4 + 376*x^5 + 1148*x^6 +... where A(x) = (1+x)/(1-x) * (1+x^2)^4/(1-x^2)^4 * (1+x^3)^9/(1-x^3)^9 *... Also, A(x) = Euler transform of [2,7,18,28,50,63,98,112,162,175,...]: A(x) = 1/((1-x)^2*(1-x^2)^7*(1-x^3)^18*(1-x^4)^28*(1-x^5)^50*(1-x^6)^63*...).
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..9042 (terms 0..1000 from Vaclav Kotesovec)
- Vaclav Kotesovec, A method of finding the asymptotics of q-series based on the convolution of generating functions, arXiv:1509.08708 [math.CO], Sep 30 2015, p. 23.
Programs
-
Mathematica
nmax = 40; CoefficientList[Series[Product[((1+x^k)/(1-x^k))^(k^2), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Aug 19 2015 *)
-
PARI
{a(n)=polcoeff(prod(m=1,n+1,((1+x^m)/(1-x^m+x*O(x^n)))^(m^2)),n)}
-
PARI
{a(n)=polcoeff(exp(sum(m=1, n, (sigma(2*m, 3)-sigma(m, 3))/4*x^m/m)+x*O(x^n)), n)}
-
PARI
{a(n)=local(InvEulerGF=x*(2+7*x+12*x^2+7*x^3+2*x^4)/(1-x^2+x*O(x^n))^3);polcoeff(1/prod(k=1,n,(1-x^k+x*O(x^n))^polcoeff(InvEulerGF,k)),n)} for(n=0,35,print1(a(n),", "))
Formula
G.f.: exp( Sum_{n>=1} (sigma_3(2*n) - sigma_3(n))/4 * x^n/n ), where sigma_3(n) is the sum of cubes of divisors of n (A001158).
The inverse Euler transform has g.f.: x*(2 + 7*x + 12*x^2 + 7*x^3 + 2*x^4)/(1-x^2)^3.
a(n) ~ exp(2^(5/4)*Pi*n^(3/4)/3 - Zeta(3)/(4*Pi^2)) / (2^(15/8) * n^(5/8)), where Zeta(3) = A002117. - Vaclav Kotesovec, Aug 19 2015
a(0) = 1, a(n) = (2/n)*Sum_{k=1..n} A007331(k)*a(n-k) for n > 0. - Seiichi Manyama, Apr 30 2017
Comments