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.
EXAMPLE
The even prime indices of 91 are {4,6}, halved {2,3}, which are relatively prime, so 91 is in the sequence.
The prime indices of 665 are {3,4,8}, even {4,8}, halved {2,4}, which are not relatively prime, so 665 is not in the sequence.
The terms together with their prime indices begin:
3: {2}
9: {2,2}
15: {2,3}
21: {2,4}
27: {2,2,2}
33: {2,5}
39: {2,6}
45: {2,2,3}
51: {2,7}
57: {2,8}
63: {2,2,4}
69: {2,9}
75: {2,3,3}
81: {2,2,2,2}
87: {2,10}
91: {4,6}
93: {2,11}
99: {2,2,5}
MATHEMATICA
Select[Range[100], OddQ[#]&&GCD@@Select[PrimePi/@First/@FactorInteger[#], EvenQ]==2&]
CROSSREFS
For odd instead of halved even prime indices we have A366848.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 01 2023
STATUS
approved