A372431 Positive integers k such that the prime indices of k are disjoint from the binary indices of k.
1, 2, 4, 7, 8, 9, 10, 11, 12, 13, 16, 17, 19, 21, 23, 24, 25, 26, 29, 31, 32, 33, 34, 35, 36, 37, 38, 40, 41, 43, 44, 46, 47, 48, 49, 50, 53, 57, 58, 59, 61, 62, 64, 65, 67, 69, 71, 72, 73, 74, 76, 79, 80, 81, 82, 83, 84, 86, 89, 92, 93, 94, 96, 97, 98, 101
Offset: 1
Examples
The binary indices of 65 are {1,7}, and the prime indices are {3,6}, so 65 is in the sequence. The terms together with their prime indices begin: 1: {} 2: {1} 4: {1,1} 7: {4} 8: {1,1,1} 9: {2,2} 10: {1,3} 11: {5} 12: {1,1,2} 13: {6} 16: {1,1,1,1} The terms together with their binary expansions and binary indices begin: 1: 1 ~ {1} 2: 10 ~ {2} 4: 100 ~ {3} 7: 111 ~ {1,2,3} 8: 1000 ~ {4} 9: 1001 ~ {1,4} 10: 1010 ~ {2,4} 11: 1011 ~ {1,2,4} 12: 1100 ~ {3,4} 13: 1101 ~ {1,3,4} 16: 10000 ~ {5}
Crossrefs
Programs
-
Mathematica
bix[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1]; prix[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]]; Select[Range[100],Intersection[bix[#],prix[#]]=={}&]
Comments