A339375 Number of partitions of n into an even number of distinct triangular numbers.
1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 2, 0, 1, 0, 1, 1, 1, 0, 1, 2, 0, 1, 0, 2, 0, 3, 1, 0, 2, 1, 1, 1, 3, 1, 2, 0, 2, 2, 0, 2, 3, 3, 1, 2, 2, 2, 2, 2, 1, 4, 4, 1, 3, 2, 3, 2, 3, 1, 5, 4, 2, 4, 2, 4, 4, 3, 2, 6, 4, 3, 4, 5, 2, 3, 6, 5, 6, 5, 4, 5, 5, 4, 5, 6, 4
Offset: 0
Keywords
Examples
a(31) = 3 because we have [28, 3], [21, 10] and [21, 6, 3, 1].
Links
Programs
-
Mathematica
nmax = 90; CoefficientList[Series[(1/2) (Product[(1 + x^(k (k + 1)/2)), {k, 1, nmax}] + Product[(1 - x^(k (k + 1)/2)), {k, 1, nmax}]), {x, 0, nmax}], x]