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!)
A075680 For odd numbers 2n-1, the minimum number of iterations of the reduced Collatz function R required to yield 1. The function R is defined as R(k) = (3k+1)/2^r, with r as large as possible. 19

%I #24 Dec 22 2021 03:37:55

%S 0,2,1,5,6,4,2,5,3,6,1,4,7,41,5,39,8,3,6,11,40,9,4,38,7,7,2,41,10,10,

%T 5,39,8,8,3,37,42,3,6,11,6,40,1,9,9,33,4,38,43,7,7,31,12,36,41,24,2,

%U 10,5,10,34,15,39,15,44,8,8,13,32,13,3,37,42,42,6,3,11,30,11,18,35,6,40,23

%N For odd numbers 2n-1, the minimum number of iterations of the reduced Collatz function R required to yield 1. The function R is defined as R(k) = (3k+1)/2^r, with r as large as possible.

%C See A075677 for the function R applied to the odd numbers once. The 3x+1 conjecture asserts that a(n) is a finite number for all n. The function R applied to the odd numbers shows the essential behavior of the 3x+1 iterations.

%C Bisection of A006667. - _T. D. Noe_, Jun 01 2006

%H T. D. Noe, <a href="/A075680/b075680.txt">Table of n, a(n) for n = 1..5000</a>

%e a(4) = 5 because 7 is the fourth odd number and 5 iterations are needed: R(R(R(R(R(7)))))=1.

%t nextOddK[n_] := Module[{m=3n+1}, While[EvenQ[m], m=m/2]; m]; (* assumes odd n *) Table[m=n; cnt=0; If[n>1, While[m=nextOddK[m]; cnt++; m!=1]]; cnt, {n, 1, 200, 2}]

%o (Haskell)

%o a075680 n = snd $ until ((== 1) . fst)

%o (\(x, i) -> (a000265 (3 * x + 1), i + 1)) (2 * n - 1, 0)

%o -- _Reinhard Zumkeller_, Jan 08 2014

%o (Perl)

%o sub a {

%o my $v = 2 * shift() - 1;

%o my $c = 0;

%o until (1 == $v) {

%o $v = 3 * $v + 1;

%o $v /= 2 until ($v & 1);

%o $c += 1;

%o }

%o return $c;

%o } # _Ruud H.G. van Tol_, Nov 16 2021

%o (PARI) a(n)=my(s); n+=n-1; while(n>1, n+=n>>1+1; if(n%2==0, n>>=valuation(n,2)); s++); s \\ _Charles R Greathouse IV_, Dec 22 2021

%Y Cf. A075677.

%Y Cf. A075684 for the largest number attained during the iteration.

%Y Cf. A000265.

%Y Cf. A060445 which also counts intermediate even steps.

%K easy,nonn

%O 1,2

%A _T. D. Noe_, Sep 25 2002

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 16 03:22 EDT 2024. Contains 371696 sequences. (Running on oeis4.)