A372589 Numbers k > 1 such that (greatest binary index of k) + (greatest prime index of k) is even.
3, 4, 5, 9, 12, 13, 14, 16, 17, 20, 22, 23, 25, 30, 31, 35, 36, 37, 38, 39, 42, 43, 48, 49, 52, 53, 54, 56, 57, 58, 61, 63, 64, 66, 67, 68, 69, 73, 75, 77, 80, 82, 83, 85, 88, 90, 92, 93, 94, 97, 99, 100, 102, 103, 109, 110, 115, 118, 119, 120, 121, 123, 124
Offset: 1
Keywords
Examples
The terms (center), their binary indices (left), and their weakly decreasing prime indices (right) begin: {1,2} 3 (2) {3} 4 (1,1) {1,3} 5 (3) {1,4} 9 (2,2) {3,4} 12 (2,1,1) {1,3,4} 13 (6) {2,3,4} 14 (4,1) {5} 16 (1,1,1,1) {1,5} 17 (7) {3,5} 20 (3,1,1) {2,3,5} 22 (5,1) {1,2,3,5} 23 (9) {1,4,5} 25 (3,3) {2,3,4,5} 30 (3,2,1) {1,2,3,4,5} 31 (11) {1,2,6} 35 (4,3) {3,6} 36 (2,2,1,1) {1,3,6} 37 (12) {2,3,6} 38 (8,1) {1,2,3,6} 39 (6,2) {2,4,6} 42 (4,2,1) {1,2,4,6} 43 (14)
Crossrefs
Programs
-
Mathematica
Select[Range[2,100],EvenQ[IntegerLength[#,2]+PrimePi[FactorInteger[#][[-1,1]]]]&]
Comments