A370593 Number of integer partitions of n such that it is not possible to choose a different prime factor of each part.
0, 1, 1, 2, 4, 5, 10, 12, 19, 26, 38, 51, 71, 94, 126, 165, 219, 285, 369, 472, 605, 766, 973, 1226, 1538, 1917, 2387, 2955, 3657, 4497, 5532, 6754, 8251, 10033, 12190, 14748, 17831, 21471, 25825, 30976, 37111, 44331, 52897, 62952, 74829, 88755, 105145, 124307
Offset: 0
Keywords
Examples
The a(0) = 0 through a(7) = 12 partitions: . (1) (11) (21) (22) (41) (33) (61) (111) (31) (221) (42) (322) (211) (311) (51) (331) (1111) (2111) (222) (421) (11111) (321) (511) (411) (2221) (2211) (3211) (3111) (4111) (21111) (22111) (111111) (31111) (211111) (1111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n], Length[Select[Tuples[If[#==1,{},First/@FactorInteger[#]]&/@#], UnsameQ@@#&]]==0&]],{n,0,30}]