A366846 Numbers whose odd prime indices are relatively prime.
2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 55, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 85, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122
Offset: 1
Keywords
Examples
The odd prime indices of 115 are {3,9}, and these are not relatively prime, so 115 is not in the sequence. The odd prime indices of 825 are {3,3,5}, and these are relatively prime, so 825 is in the sequence.
Crossrefs
Programs
-
Mathematica
Select[Range[100], GCD@@Select[PrimePi/@First/@FactorInteger[#], OddQ]==1&]
Comments