A262883 Expansion of Product_{k>=1} 1/((1-x^(3*k-1))*(1-x^(3*k-2)))^k.
1, 1, 2, 2, 5, 7, 10, 15, 24, 33, 49, 68, 100, 136, 193, 267, 370, 501, 690, 928, 1260, 1687, 2265, 3007, 4006, 5289, 6987, 9163, 12033, 15698, 20469, 26572, 34470, 44510, 57442, 73861, 94852, 121439, 155287, 198007, 252165, 320335, 406396, 514410, 650288
Offset: 0
Keywords
Links
- Vaclav Kotesovec and Alois P. Heinz, Table of n, a(n) for n = 0..10000 (first 2001 terms 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
Programs
-
Maple
with(numtheory): a:= proc(n) option remember; `if`(n=0, 1, add(add(d* `if`(irem(d+3, 3, 'r')=0, 0, r), d=divisors(j))*a(n-j), j=1..n)/n) end: seq(a(n), n=0..60); # Alois P. Heinz, Oct 05 2015
-
Mathematica
nmax = 50; CoefficientList[Series[Product[1/((1-x^(3*k-1))*(1-x^(3*k-2)))^k, {k, 1, nmax}], {x, 0, nmax}], x]
Comments