OFFSET
1,2
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.
EXAMPLE
The prime indices of 91 are {4,6}, with only choice {2,3}, so 91 is in the sequence.
The terms together with their prime indices begin:
1: {} 53: {16} 109: {29}
3: {2} 55: {3,5} 111: {2,12}
5: {3} 59: {17} 119: {4,7}
7: {4} 65: {3,6} 123: {2,13}
11: {5} 67: {19} 127: {31}
15: {2,3} 69: {2,9} 129: {2,14}
17: {7} 77: {4,5} 131: {32}
19: {8} 83: {23} 155: {3,11}
23: {9} 85: {3,7} 157: {37}
31: {11} 87: {2,10} 161: {4,9}
33: {2,5} 91: {4,6} 165: {2,3,5}
35: {3,4} 93: {2,11} 169: {6,6}
39: {2,6} 95: {3,8} 177: {2,17}
41: {13} 97: {25} 179: {41}
51: {2,7} 103: {27} 183: {2,18}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Length[Union[Sort /@ Select[Tuples[prix/@prix[#]], UnsameQ@@#&]]]==1&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 06 2024
STATUS
approved