A261384 Expansion of Product_{k>=1} (1+x^k)^(2*k-1) / (1-x^k)^(2*k).
1, 3, 12, 39, 117, 331, 893, 2307, 5766, 13986, 33046, 76302, 172567, 383013, 835731, 1795236, 3801105, 7941439, 16386777, 33423342, 67435311, 134675784, 266385932, 522135379, 1014643823, 1955656848, 3740191268, 7100290646, 13383997996, 25058666367
Offset: 0
Keywords
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 0..2000
Programs
-
Mathematica
nmax = 40; CoefficientList[Series[Product[(1+x^k)^(2*k-1)/(1-x^k)^(2*k), {k, 1, nmax}], {x, 0, nmax}], x]
Comments