A060412 In the '3x+1' problem, these values for the starting value set new records for the "dropping time", number of steps to reach a lower value than the start.
2, 3, 7, 27, 703, 10087, 35655, 270271, 362343, 381727, 626331, 1027431, 1126015, 8088063, 13421671, 20638335, 26716671, 56924955, 63728127, 217740015, 1200991791, 1827397567, 2788008987, 12235060455
Offset: 1
Keywords
Examples
See A102419.
Links
- N. J. A. Sloane, Table of n, a(n) for n = 1..35 (from the web page of Tomás Oliveira e Silva)
- Tomás Oliveira e Silva, Tables
- Eric Roosendaal, On the 3x + 1 problem
- N. J. A. Sloane, First 36 terms of A217934 and A060412 [From Roosendaal web site]
- Index entries for sequences related to 3x+1 (or Collatz) problem
Crossrefs
Programs
-
Mathematica
dcoll[n_]:=Length[NestWhileList[If[EvenQ[#],#/2,3#+1]&,n,#>=n&]]; t={max=2}; Do[If[(y=dcoll[n])>max,max=y; AppendTo[t,n]],{n,3,1130000,4}]; t (* Jayanta Basu, May 28 2013 *)
Comments