A379736 Number of integer partitions of n whose product of parts is not n.
1, 0, 1, 2, 3, 6, 9, 14, 19, 28, 40, 55, 73, 100, 133, 174, 226, 296, 381, 489, 623, 790, 1000, 1254, 1568, 1956, 2434, 3007, 3714, 4564, 5599, 6841, 8342, 10141, 12308, 14881, 17968, 21636, 26013, 31183, 37331, 44582, 53169, 63260, 75171, 89130, 105556
Offset: 0
Keywords
Examples
The a(2) = 1 through a(7) = 14 partitions: (11) (21) (31) (32) (33) (43) (111) (211) (41) (42) (52) (1111) (221) (51) (61) (311) (222) (322) (2111) (411) (331) (11111) (2211) (421) (3111) (511) (21111) (2221) (111111) (3211) (4111) (22111) (31111) (211111) (1111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],Times@@#!=n&]],{n,0,30}]
Comments