OFFSET
1,1
COMMENTS
The Heinz number of a partition (y_1,...,y_k) is prime(y_1)*...*prime(y_k), so these are numbers whose only odd prime index (counting multiplicity) is the smallest.
EXAMPLE
The sequence of partitions together with their Heinz numbers begins:
2: (1) 54: (2,2,2,1) 109: (29)
5: (3) 58: (10,1) 114: (8,2,1)
6: (2,1) 59: (17) 122: (18,1)
11: (5) 65: (6,3) 126: (4,2,2,1)
14: (4,1) 67: (19) 127: (31)
17: (7) 73: (21) 137: (33)
18: (2,2,1) 74: (12,1) 142: (20,1)
23: (9) 78: (6,2,1) 143: (6,5)
26: (6,1) 83: (23) 145: (10,3)
31: (11) 86: (14,1) 149: (35)
35: (4,3) 95: (8,3) 157: (37)
38: (8,1) 97: (25) 158: (22,1)
41: (13) 98: (4,4,1) 162: (2,2,2,2,1)
42: (4,2,1) 103: (27) 167: (39)
47: (15) 106: (16,1) 174: (10,2,1)
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[2, 100], OddQ[First[primeMS[#]]]&&And@@EvenQ[Rest[primeMS[#]]]&]
CROSSREFS
These partitions are counted by A035363 (shifted left once).
Terms of A340932 can be factored into elements of this sequence.
The even version is A341447.
A001222 counts prime factors.
A005408 lists odd numbers.
A026804 counts partitions whose smallest part is odd.
A031368 lists odd-indexed primes.
A032742 selects largest proper divisor.
A055396 selects smallest prime index.
A056239 adds up prime indices.
A061395 selects largest prime index.
A066207 lists numbers with all even prime indices.
A066208 lists numbers with all odd prime indices.
A112798 lists the prime indices of each positive integer.
A244991 lists numbers whose greatest prime index is odd.
A340932 lists numbers whose smallest prime index is odd.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 12 2021
STATUS
approved