A329157 Expansion of Product_{k>=1} (1 - Sum_{j>=1} j * x^(k*j)).
1, -1, -3, -3, -4, 3, 2, 19, 21, 32, 40, 45, 16, 8, -18, -125, -164, -291, -358, -530, -588, -724, -592, -675, -358, -207, 570, 1201, 2208, 3333, 4944, 6490, 8277, 10492, 11800, 13260, 14328, 14722, 12942, 12075, 5640, 603, -10444, -21120, -39360, -55876, -83488
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..10000
Programs
-
Maple
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i>1, b(n, i-1), 0)- add(b(n-i*j, min(n-i*j, i-1))*j, j=`if`(i=1, n, 1..n/i))) end: a:= n-> b(n$2): seq(a(n), n=0..46); # Alois P. Heinz, Jul 18 2025
-
Mathematica
nmax = 46; CoefficientList[Series[Product[(1 - Sum[j x^(k j), {j, 1, nmax}]), {k, 1, nmax}], {x, 0, nmax}], x] nmax = 46; CoefficientList[Series[Product[(1 - x^k/(1 - x^k)^2), {k, 1, nmax}], {x, 0, nmax}], x]
Comments