VOOZH
about
URL: https://oeis.org/A355568
⇱ A355568 - OEIS
login
A355568
Numbers k > 4 in a Collatz trajectory reaching k after starting at k-1.
3
8, 10, 16, 20, 26, 34, 40, 52, 92, 122, 160, 167, 184, 244, 251, 334, 377, 412, 433, 488, 502, 650, 668, 866, 890, 976, 1154, 1186, 1300, 1336, 1732, 1780, 2308, 3644, 4858, 7288
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,1
LINKS
Table of n, a(n) for n=1..36.
Index entries for sequences related to 3x+1 (or Collatz) problem
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
Cf.
A006370
,
A006577
,
A070991
,
A070993
,
A355239
,
A355240
,
A355569
.
Sequence in context:
A270796
A058633
A165143
*
A289687
A155966
A228072
Adjacent sequences:
A355565
A355566
A355567
*
A355569
A355570
A355571
KEYWORD
nonn
,
more
AUTHOR
Hugo Pfoertner
, Jul 10 2022
STATUS
approved