OFFSET
1,2
COMMENTS
Terms of A366470 at the beginning of a segment (except for the first segment).
PROG
(Python)
from itertools import count, islice
from sympy import nextprime
def A366869_gen(): # generator of terms
a, aset, p = 1, {0, 1}, 2
for i in count(3):
for b in count(a, p):
if b not in aset:
aset.add(b)
c = b%(p:=nextprime(p))
if c > a:
yield c
a = c
break
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Chai Wah Wu, Oct 25 2023
STATUS
approved