OFFSET
1,3
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000 (terms 1..514 from N. J. A. Sloane)
PROG
(Python)
from itertools import islice
from collections import Counter
def A377926_gen(): # generator of terms
yield from (0, 1)
l, s, b, c, j = Counter('11'), 1, {11}, 11, 1
while True:
i = s
while True:
if i not in b:
li, o = Counter(str(i)), 0
for d in (l+li).values():
if d % 2:
if o > 0:
break
o += 1
else:
j += 1
if i>c:
yield j
c = i
l = li
b.add(i)
while s in b:
b.remove(s)
s += 1
break
i += 1
CROSSREFS
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Dec 14 2024
STATUS
approved