OFFSET
1,1
COMMENTS
A prime index of n is a number m such that prime(m) divides n. The multiset of prime indices of n is row n of A112798. 1 has no prime indices so is not counted.
EXAMPLE
The sequence of terms together with their prime indices begins:
3: {2} 51: {2,7} 99: {2,2,5}
7: {4} 53: {16} 101: {26}
9: {2,2} 57: {2,8} 105: {2,3,4}
13: {6} 61: {18} 107: {28}
15: {2,3} 63: {2,2,4} 111: {2,12}
19: {8} 69: {2,9} 113: {30}
21: {2,4} 71: {20} 117: {2,2,6}
27: {2,2,2} 75: {2,3,3} 119: {4,7}
29: {10} 77: {4,5} 123: {2,13}
33: {2,5} 79: {22} 129: {2,14}
37: {12} 81: {2,2,2,2} 131: {32}
39: {2,6} 87: {2,10} 133: {4,8}
43: {14} 89: {24} 135: {2,2,2,3}
45: {2,2,3} 91: {4,6} 139: {34}
49: {4,4} 93: {2,11} 141: {2,15}
MATHEMATICA
Select[Range[2, 100], EvenQ[PrimePi[FactorInteger[#][[1, 1]]]]&]
CROSSREFS
These partitions are counted by A026805.
A001222 counts prime factors.
A005843 lists even numbers.
A031215 lists even-indexed primes.
A055396 selects least prime index.
A056239 adds up prime indices.
A061395 selects greatest prime index.
A112798 lists the prime indices of each positive integer.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 12 2021
STATUS
approved