A316719 Expansion of Product_{k=1..7} (1+x^(2*k-1))/(1-x^(2*k)).
1, 1, 1, 2, 3, 4, 5, 7, 10, 13, 16, 21, 28, 35, 43, 54, 68, 83, 100, 122, 149, 179, 212, 253, 303, 357, 417, 490, 575, 668, 772, 893, 1033, 1187, 1356, 1551, 1773, 2015, 2281, 2583, 2922, 3291, 3695, 4147, 4650, 5197, 5791, 6450, 7179, 7966, 8818, 9757, 10785, 11893
Offset: 0
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..10000
Crossrefs
Programs
-
Mathematica
nmax=60; CoefficientList[Series[Product[(1 + x^(2 k - 1)) / (1 - x^(2 k)), {k, 1, 7}], {x, 0, nmax}], x] (* Vincenzo Librandi, Jul 12 2018 *)
-
PARI
N=99; x='x+O('x^N); Vec(prod(k=1, 7, (1+x^(2*k-1))/(1-x^(2*k))))