login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A228060 Irregular table of conjectural numbers. Let len(n) be the length (including n) of the Collatz (3x+1) iteration of n. The number n is in row n - len(n). 1
27, 31, 41, 54, 47, 55, 62, 63, 73, 71, 82, 83, 97, 94, 9, 95, 7, 108, 3, 109, 11, 14, 110, 6, 15, 18, 19, 91, 5, 1, 2, 4, 25, 12, 10, 13, 8, 17, 39, 22, 33, 107, 23, 129, 28, 29, 16, 30, 20, 21, 24, 43, 36, 26, 37, 103, 124, 38, 125, 126, 34, 35, 49, 57, 50, 121 (list; graph; refs; listen; history; text; internal format)
OFFSET
-85,1
COMMENTS
This sequence is labeled conjectural because (I think) we currently have no way of knowing whether there is some large n that has a long Collatz iteration. Sequence A220139 computes the trajectory for some large numbers, all of which have moderately small length (see A220140). The table below shows numbers in the same row. Notice that each row has only a few numbers. Row 15 is the first with 4 numbers: 26, 37, 103, 124. Row 324 is the first with 5 numbers: 336, 357, 370, 414, 440. Row 16028 has 6 numbers. Row 34937 has 7 numbers. No row in the first 10^7 rows has more than 7 numbers. This sequence is fairly linear; in the first 10^7 terms, no adjacent terms differ by more than 547.
LINKS
Eric Weisstein's World of Mathematics, Collatz Problem
EXAMPLE
Example:
row -85: 27
row -76: 31
row -69: 41
row -59: 54
row -58: 47, 55
row -46: 62
row -45: 63
row -43: 73
row -32: 71
row -29: 82
row -28: 83
row -22: 97
row -12: 94
row -11: 9, 95
row -10: 7
row -6: 108
row -5: 3, 109
row -4: 11, 14, 110
row -3: 6, 15, 18
row -2: 19, 91
row -1: 5
row 0: 1, 2
row 1: 4, 25
row 2: 12
row 3: 10, 13
row 4: 8, 17, 39
MATHEMATICA
nn = 100; Collatz[n_] := NestWhileList[If[EvenQ[#], #/2, 3 # + 1] &, n, # > 1 &]; t2 = Table[{n - Length[Collatz[n]], n}, {n, 2*nn}]; t3 = Select[t2, #[[1]] <= nn &]; Transpose[Sort[t3]][[2]]
CROSSREFS
Cf. A070165 (Collatz trajectories).
Cf. A008908 (length of trajectories).
Sequence in context: A160394 A316729 A095387 * A031408 A324248 A275188
KEYWORD
nonn,tabf
AUTHOR
T. D. Noe, Aug 21 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)