OFFSET
0,3
COMMENTS
A015910 is conjectured to contain every natural number except for 1, which would imply that this sequence has infinitely many terms.
LINKS
Kevin Ryde, Table of n, a(n) for n = 0..45
Kevin Ryde, C Code
PROG
(Python)
i = 0
c = [0]
for j in range(10**9):
if c[-1] == i:
print(f"a({i}) = {j}")
i += 1
c.append(1+c[pow(2, len(c), len(c))])
(C) /* See links. */
CROSSREFS
KEYWORD
nonn
AUTHOR
Bryle Morga, May 11 2024
EXTENSIONS
a(30)-a(32) from Michael S. Branicky, May 12 2024
STATUS
approved