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!)
A139399 Number of steps to reach a cycle in Collatz problem. 9

%I #21 Aug 10 2022 10:06:52

%S 0,0,5,0,3,6,14,1,17,4,12,7,7,15,15,2,10,18,18,5,5,13,13,8,21,8,109,

%T 16,16,16,104,3,24,11,11,19,19,19,32,6,107,6,27,14,14,14,102,9,22,22,

%U 22,9,9,110,110,17,30,17,30,17,17,105,105,4,25,25,25,12,12,12,100,20,113,20

%N Number of steps to reach a cycle in Collatz problem.

%C a(1)=a(2)=a(4)=0 as A006370(A006370(A006370(x)))=x for x=1,2,4 [corrected by _Rémy Sigrist_, Jun 28 2020];

%C a(n) = A006577(n) - 2 for n > 2 (if the conjecture holds).

%C For n>2: let L = a(n) mod 3, then A006460(n) = if L=0 then 4 else L. - _Reinhard Zumkeller_, Nov 17 2013

%H Reinhard Zumkeller, <a href="/A139399/b139399.txt">Table of n, a(n) for n = 1..10000</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/CollatzProblem.html">Collatz Problem</a>

%H <a href="/index/3#3x1">Index entries for sequences related to 3x+1 (or Collatz) problem</a>

%t f[n_] := If[EvenQ[n], n/2, 3 n + 1];

%t a[n_] := If[n<3, 0, Length[NestWhileList[f, n, {#1, #2, #3} != {4, 2, 1}&, 3]] - 3];

%t Table[a[n], {n, 1, 100}] (* _Jean-François Alcover_, Aug 08 2022 *)

%o (Haskell)

%o a139399 = f 0 where

%o f k x = if x `elem` [1,2,4] then k else f (k + 1) (a006370 x)

%o -- _Reinhard Zumkeller_, Nov 17 2013

%Y Essentially the same sequence as A112695.

%Y Cf. A006370, A006460.

%K nonn

%O 1,3

%A _Reinhard Zumkeller_, Apr 18 2008

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 March 29 11:14 EDT 2024. Contains 371278 sequences. (Running on oeis4.)