OFFSET
1,2
COMMENTS
EXAMPLE
The sequence of terms together with their prime indices begins:
1: {} 24: {1,1,1,2} 52: {1,1,6}
2: {1} 26: {1,6} 53: {16}
3: {2} 28: {1,1,4} 56: {1,1,1,4}
4: {1,1} 29: {10} 57: {2,8}
5: {3} 31: {11} 58: {1,10}
6: {1,2} 32: {1,1,1,1,1} 59: {17}
7: {4} 34: {1,7} 61: {18}
8: {1,1,1} 35: {3,4} 62: {1,11}
10: {1,3} 37: {12} 64: {1,1,1,1,1,1}
11: {5} 38: {1,8} 65: {3,6}
12: {1,1,2} 39: {2,6} 67: {19}
13: {6} 40: {1,1,1,3} 68: {1,1,7}
14: {1,4} 41: {13} 69: {2,9}
16: {1,1,1,1} 42: {1,2,4} 70: {1,3,4}
17: {7} 43: {14} 71: {20}
19: {8} 44: {1,1,5} 73: {21}
20: {1,1,3} 46: {1,9} 74: {1,12}
21: {2,4} 47: {15} 76: {1,1,8}
22: {1,5} 48: {1,1,1,1,2} 77: {4,5}
23: {9} 49: {4,4} 78: {1,2,6}
MATHEMATICA
primeMS[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Count[primeMS[#], _?PrimeQ]<=1&]
CROSSREFS
These are numbers n such that A257994(n) <= 1.
The number of distinct prime prime indices is A279952.
Numbers with at least one prime prime index are A331386.
The set S of numbers with at most one prime index in S are A331784.
The set S of numbers with at most one distinct prime index in S are A331912.
Numbers with exactly one prime prime index are A331915.
Numbers with exactly one distinct prime prime index are A331916.
Numbers with at most one distinct prime prime index are A331995.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 08 2020
STATUS
approved