A372851 Squarefree numbers whose prime indices are the binary indices of some prime number.
3, 6, 10, 22, 30, 42, 46, 66, 70, 102, 114, 118, 130, 182, 238, 246, 266, 318, 330, 354, 370, 402, 406, 434, 442, 510, 546, 646, 654, 690, 762, 770, 798, 930, 938, 946, 962, 986, 1066, 1102, 1122, 1178, 1218, 1222, 1246, 1258, 1334, 1378, 1430, 1482, 1578
Offset: 1
Keywords
Examples
The prime indices of 70 are {1,3,4}, which are the binary indices of 13, which is prime, so 70 is in the sequence. The prime indices of 15 are {2,3}, which are the binary indices of 6, which is not prime, so 15 is not in the sequence. The terms together with their prime indices begin: 3: {2} 6: {1,2} 10: {1,3} 22: {1,5} 30: {1,2,3} 42: {1,2,4} 46: {1,9} 66: {1,2,5} 70: {1,3,4} 102: {1,2,7} 114: {1,2,8} 118: {1,17} 130: {1,3,6} 182: {1,4,6} 238: {1,4,7} 246: {1,2,13} 266: {1,4,8} 318: {1,2,16} 330: {1,2,3,5} 354: {1,2,17} 370: {1,3,12} 402: {1,2,19}
Crossrefs
Programs
-
Mathematica
Select[Range[100],SquareFreeQ[#] && PrimeQ[Total[2^(PrimePi/@First/@FactorInteger[#]-1)]]&]
Formula
Squarefree numbers k such that Sum_{i:prime(i)|k} 2^(i-1) is prime, where the sum is over the (distinct) prime indices of k.
Comments