A294265 Number of partitions of n into squares that do not divide n.
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 2, 1, 0, 0, 3, 1, 1, 0, 3, 3, 1, 0, 3, 3, 1, 0, 5, 3, 3, 0, 2, 3, 3, 0, 7, 3, 3, 3, 8, 1, 3, 0, 10, 9, 6, 0, 14, 9, 0, 0, 15, 12, 9, 4, 15, 16, 9, 0, 18, 18, 7, 1, 23, 18, 17, 0, 9, 22, 19, 5, 30, 28, 19, 5, 34, 6, 24, 2, 40, 36, 30
Offset: 0
Keywords
Examples
a(25) = 2 because we have [16, 9] and [9, 4, 4, 4, 4].
Links
Programs
-
Mathematica
Table[SeriesCoefficient[Product[1/(1 - Boole[Mod[n, k] > 0 && OddQ[DivisorSigma[0, k]]] x^k), {k, 1, n}], {x, 0, n}], {n, 0, 95}]
Comments