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!)
A317753 Number of steps to reach 1 in 7x+-1 problem, or -1 if 1 is never reached. 1

%I #19 Aug 19 2018 06:20:54

%S 0,1,13,2,10,14,18,3,7,11,53,15,19,19,23,4,27,8,50,12,73,54,16,16,58,

%T 20,20,20,43,24,24,5,47,28,325,9,70,51,32,13,13,74,272,55,55,17,17,17,

%U 276,59,40,21,40,21,21,21,63,44,63

%N Number of steps to reach 1 in 7x+-1 problem, or -1 if 1 is never reached.

%C The 7x+-1 problem is as follows. Start with any natural number n. If 4 divides n-1, multiply it by 7 and add 1; if 4 divides n+1, multiply it by 7 and subtract 1; otherwise divide it by 2. The 7x+-1 problem concerns the question whether we always reach 1.

%C The number of steps to reach 1 is also called the total stopping time.

%C Also the least positive k for which the iterate A317640^k(n) = 1.

%H David Barina, <a href="/A317753/b317753.txt">Table of n, a(n) for n = 1..10000</a>

%H D. Barina, <a href="https://arxiv.org/abs/1807.00908">7x+-1: Close Relative of Collatz Problem</a>, arXiv:1807.00908 [math.NT], 2018.

%H K. Matthews, <a href="http://www.numbertheory.org/php/barina.html">David Barina's 7x+1 conjecture</a>.

%e a(5)=10 because the trajectory of 5 is (5, 36, 18, 9, 64, 32, 16, 8, 4, 2, 1).

%t f[n_] := Switch[Mod[n, 4], 0, n/2, 1, 7 n + 1, 2, n/2, 3, 7 n - 1]; a[n_] := Length@NestWhileList[f, n, # > 1 &] - 1; Array[a, 70] (* _Robert G. Wilson v_, Aug 07 2018 *)

%o (C)

%o int a(int n) {

%o int s = 0;

%o while( n != 1 ) {

%o switch(n%4) {

%o case 1: n = 7*n+1; break;

%o case 3: n = 7*n-1; break;

%o default: n = n/2;

%o }

%o s++;

%o }

%o return s;

%o }

%o (PARI) a(n) = my(nb=0); while(n != 1, if (!((n-1)%4), n = 7*n+1, if (!((n+1)%4), n = 7*n-1, n = n/2)); nb++); nb; \\ _Michel Marcus_, Aug 06 2018

%Y Cf. A317640 (7x+-1 function), A006577 (3x+1 equivalent).

%K nonn,easy,hear,look

%O 1,3

%A _David Barina_, Aug 06 2018

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 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)