OFFSET
1,1
COMMENTS
A binary index of n is any position of a 1 in its reversed binary expansion. The binary indices of n are row n of A048793.
Circularity means the last part is followed by the first.
Note that this is a somewhat degenerate case, as a part could only be followed by a divisor if it is the last part followed by the first.
EXAMPLE
The sequence of terms together with their binary expansions and binary indices begins:
6: 110 ~ {2,3}
12: 1100 ~ {3,4}
18: 10010 ~ {2,5}
20: 10100 ~ {3,5}
22: 10110 ~ {2,3,5}
24: 11000 ~ {4,5}
28: 11100 ~ {3,4,5}
30: 11110 ~ {2,3,4,5}
40: 101000 ~ {4,6}
48: 110000 ~ {5,6}
56: 111000 ~ {4,5,6}
66: 1000010 ~ {2,7}
68: 1000100 ~ {3,7}
70: 1000110 ~ {2,3,7}
72: 1001000 ~ {4,7}
76: 1001100 ~ {3,4,7}
78: 1001110 ~ {2,3,4,7}
80: 1010000 ~ {5,7}
82: 1010010 ~ {2,5,7}
84: 1010100 ~ {3,5,7}
MATHEMATICA
Select[Range[100], !MatchQ[Append[Join@@Position[Reverse[IntegerDigits[#, 2]], 1], 1+IntegerExponent[#, 2]], {___, x_, y_, ___}/; Divisible[x, y]||Divisible[y, x]]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Oct 25 2019
STATUS
approved