OFFSET
0,1
COMMENTS
LINKS
Markus Sigg and Hugo Pfoertner, Table of n, a(n) for n = 0..2441
Wikipedia, Collatz Conjecture
EXAMPLE
a(5) = 3 because there are two trajectories with 5 steps, namely (32,16,8,4,2,1) and (5,16,8,4,2,1). 3 is the smallest number not appearing in both.
PROG
(Python)
# output in b-file format
from itertools import count
n = 0
for k in count():
m = k
s = 0
while m > 1:
m = m // 2 if m % 2 == 0 else 3*m+1
s += 1
while n < s:
print(n, k, flush=True)
n += 1
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Markus Sigg and Hugo Pfoertner, Aug 03 2024
STATUS
approved