A370807 Number of integer partitions of n into parts > 1 such that it is not possible to choose a different prime factor of each part.
0, 0, 0, 0, 1, 0, 3, 1, 4, 4, 8, 9, 15, 17, 25, 30, 43, 54, 72, 87, 115, 139, 181, 224, 283, 342, 429, 519, 647, 779, 967
Offset: 0
Examples
The a(0) = 0 through a(11) = 9 partitions: . . . . (22) . (33) (322) (44) (333) (55) (443) (42) (332) (432) (82) (533) (222) (422) (522) (433) (542) (2222) (3222) (442) (632) (622) (722) (3322) (3332) (4222) (4322) (22222) (5222) (32222)
Crossrefs
A355741 counts choices of a prime factor of each prime index.
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],FreeQ[#,1] && Length[Select[Tuples[If[#==1,{},First/@FactorInteger[#]]&/@#],UnsameQ@@#&]]==0&]],{n,0,30}]