A324754 Number of integer partitions of n containing no part > 1 whose prime indices all belong to the partition.
1, 1, 2, 2, 4, 3, 7, 8, 11, 12, 19, 19, 30, 34, 46, 50, 71, 76, 104, 119, 151, 171, 225, 247, 315, 360, 446, 504, 629, 703, 867, 986, 1192, 1346, 1636, 1837, 2204, 2500, 2965, 3348, 3980, 4475, 5276, 5963, 6973, 7852, 9194, 10335, 12009, 13536, 15650, 17589
Offset: 0
Keywords
Examples
The a(1) = 1 through a(8) = 11 integer partitions: (1) (2) (3) (4) (5) (6) (7) (8) (11) (111) (22) (311) (33) (43) (44) (31) (11111) (42) (52) (62) (1111) (51) (61) (71) (222) (331) (422) (3111) (511) (611) (111111) (31111) (2222) (1111111) (3311) (5111) (311111) (11111111)
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],!MemberQ[#,k_/;SubsetQ[#,PrimePi/@First/@FactorInteger[k]]]&]],{n,0,30}]
Comments