OFFSET
1,1
LINKS
FORMULA
a(n) = A070993(n+1) + 1.
EXAMPLE
8 is a term because the orbit started at 8 - 1 = 7 reaches 8:
7 -> 22 -> 11 -> 34 -> 17 -> 52 -> 26 -> 13 -> 40 -> 20 -> 10 -> 5 -> 16 -> 8;
10 is a term because it is in the orbit starting at 10 - 1 = 9:
9 -> 28 -> 14 -> 7 -> 22 -> 11 -> 34 -> 17 -> 52 -> 26 -> 13 -> 40 -> 20 -> 10.
PROG
(PARI) collatz(start, target) = {my(old=start, new=0); while (new!=target && new!=1, if(old%2==0, new=old/2, new=3*old+1); old=new); new>1};
for (k=5, 10000, if(collatz(k-1, k), print1(k, ", ")))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Hugo Pfoertner, Jul 10 2022
STATUS
approved