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 2795 are {3,6,14}, with prime factors {{3},{2,3},{2,7}}, and the only choice with different terms is {3,2,7}, so 2795 is in the sequence.
The terms together with their prime indices of prime indices begin:
1: {}
3: {{1}}
5: {{2}}
11: {{3}}
15: {{1},{2}}
17: {{4}}
31: {{5}}
33: {{1},{3}}
39: {{1},{1,2}}
41: {{6}}
51: {{1},{4}}
55: {{2},{3}}
59: {{7}}
65: {{2},{1,2}}
67: {{8}}
83: {{9}}
85: {{2},{4}}
87: {{1},{1,3}}
93: {{1},{5}}
109: {{10}}
111: {{1},{1,1,2}}
MATHEMATICA
prix[n_]:=If[n==1, {}, Flatten[Cases[FactorInteger[n], {p_, k_}:>Table[PrimePi[p], {k}]]]];
Select[Range[100], Length[Select[Tuples[prix/@prix[#]], UnsameQ@@#&]]==1&]
KEYWORD
nonn
AUTHOR
Gus Wiseman, Dec 12 2023
STATUS
approved