|
Search: id:A006877
|
|
|
| A006877 |
|
In the `3x+1' problem, these values for the starting value set new records for number of steps to reach 1. (Formerly M0748)
|
|
+0 12
|
|
| 1, 2, 3, 6, 7, 9, 18, 25, 27, 54, 73, 97, 129, 171, 231, 313, 327, 649, 703, 871, 1161, 2223, 2463, 2919, 3711, 6171, 10971, 13255, 17647, 23529, 26623, 34239, 35655, 52527, 77031, 106239, 142587, 156159, 216367, 230631, 410011, 511935, 626331, 837799
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Both the 3x+1 steps and the halving steps are counted.
|
|
REFERENCES
|
B. Hayes, Computer Recreations: On the ups and downs of hailstone numbers, Scientific American, 250 (No. 1, 1984), pp. 10-16.
D. R. Hofstadter, Goedel, Escher, Bach: an Eternal Golden Braid, Random House, 1980, p. 400.
G. T. Leavens and M. Vermeulen, 3x+1 search problems, Computers and Mathematics with Applications, 24 (1992), 79-99.
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=1..130 (from Eric Roosendaal's data)
J. C. Lagarias, The 3x+1 problem and its generalizations, Amer. Math. Monthly, 92 (1985), 3-23.
R. Munafo, Integer Sequences Related to 3x+1 Collatz Iteration
Index entries for sequences from "Goedel, Escher, Bach"
Index entries for sequences related to 3x+1 (or Collatz) problem
Eric Roosendaal, 3x+1 Delay Records
|
|
MAPLE
|
A006877 := proc(n) local a, L; L := 0; a := n; while a <> 1 do if a mod 2 = 0 then a := a/2; else a := 3*a+1; fi; L := L+1; od: RETURN(L); end;
|
|
CROSSREFS
|
Cf. A006884, A006885, A006877, A006878, A033492.
Sequence in context: A018700 A018295 A033495 this_sequence A085397 A073439 A107998
Adjacent sequences: A006874 A006875 A006876 this_sequence A006878 A006879 A006880
|
|
KEYWORD
|
nonn,nice
|
|
AUTHOR
|
njas, mrob(AT)mrob.com (Robert P Munafo)
|
|
|
Search completed in 0.002 seconds
|