A324750 Number of strict integer partitions of n not containing 1 or any part whose prime indices all belong to the partition.
1, 0, 1, 1, 1, 1, 2, 3, 2, 4, 4, 4, 6, 8, 8, 11, 10, 15, 16, 19, 23, 27, 28, 35, 39, 47, 50, 63, 68, 77, 91, 102, 114, 130, 147, 169, 187, 213, 237, 268, 300, 336, 380, 422, 472, 525, 587, 647, 731, 810, 895, 996, 1102, 1227, 1355, 1498, 1661, 1818, 2020, 2221
Offset: 0
Keywords
Examples
The a(2) = 1 through a(17) = 15 strict integer partitions (A...H = 10...17): 2 3 4 5 6 7 8 9 A B C D E F G H 42 43 62 54 64 65 75 76 86 87 97 98 52 63 73 83 84 85 95 96 A6 A7 72 82 542 93 94 A4 A5 C4 B6 A2 A3 B3 B4 D3 C5 642 B2 C2 C3 E2 D4 643 752 D2 763 E3 652 842 654 862 F2 762 943 854 843 A42 863 852 872 A43 A52 B42 6542
Crossrefs
Programs
-
Mathematica
Table[Length[Select[IntegerPartitions[n],UnsameQ@@#&&!MemberQ[#,1]&&!MemberQ[#,k_/;SubsetQ[#,PrimePi/@First/@FactorInteger[k]]]&]],{n,0,30}]
Comments