OFFSET
1,2
EXAMPLE
The sequence of terms together with their reversed binary expansions begins:
1: (1)
2: (01)
3: (11)
4: (001)
5: (101)
6: (011)
7: (111)
8: (0001)
9: (1001)
10: (0101)
12: (0011)
13: (1011)
14: (0111)
15: (1111)
16: (00001)
17: (10001)
18: (01001)
20: (00101)
21: (10101)
24: (00011)
MATHEMATICA
Select[Range[100], LessEqual@@Length/@Split[Join@@Position[Reverse[IntegerDigits[#, 2]], 1], #2==#1+1&]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 12 2019
STATUS
approved