OFFSET
0,1
COMMENTS
See A352245 for further details and examples.
LINKS
PROG
(Python)
from itertools import count, islice
def agen():
b = "1"
for k in count(1):
bk = bin(k)[2:]
idx = b.find(bk) + 1
if idx == 0: yield k
b += bin(idx)[2:]
print(list(islice(agen(), 73))) # Michael S. Branicky, Mar 18 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Scott R. Shannon, Mar 09 2022
STATUS
approved