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!)
A267435 Numbers n such that each reduced Collatz trajectory (mod p): (n, T(n), T(T(n)),..., 4, 2, 1) / pZ, where the odd prime p is the number of iterations needed to reach 1, contains exactly the p-1 values {1, 2, 3, .., p-1}. 1

%I #17 Oct 17 2023 05:49:45

%S 8,20,32,320,2048,2216,8192,13312,87040,218432,524288,89478400,

%T 536870912,137438953472,250199979283796,9007199254740992,

%U 63800994005254144,96076791692656640,382805968326492160,576460752303423488,2305843009213693952,4099276399740365440

%N Numbers n such that each reduced Collatz trajectory (mod p): (n, T(n), T(T(n)),..., 4, 2, 1) / pZ, where the odd prime p is the number of iterations needed to reach 1, contains exactly the p-1 values {1, 2, 3, .., p-1}.

%C Or numbers n such that the multiplicative groups {n, T(n), T(T(n)),..., 4, 2, 1} / pZ are of order p-1.

%C Property of the sequence:

%C This sequence provides a link with Artin’s conjecture on primitive roots.

%C Conjecture: the sequence is infinite (corollary of a Artin’s conjecture because the sequence contains the numbers 2^A001122(k) where A001122 are the primes with primitive root 2).

%C The sequence is divided into two class of numbers:

%C i) A class of powers of 2: 2^3, 2^5, 2^11, 2^13, 2^19, 2^29, 2^37, 2^53, ..., 2^A001122(k),…

%C ii) A class of non-powers of 2: 20, 320, 2216, 13312, 87040, 218432, 89478400...

%C The corresponding p of the sequence are 3, 7, 5, 11, 11, 19, 13, 19, 19, 23, 19, 29,...

%H Hiroaki Yamanouchi, <a href="/A267435/b267435.txt">Table of n, a(n) for n = 1..37</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Artin%27s_conjecture_on_primitive_roots">Artin's conjecture on primitive roots</a>.

%e 20 is in the sequence because the Collatz trajectory of 20 is {20 -> 10 -> 5 -> 16 -> 8 -> 4 -> 2 -> 1} with 7 iterations, and the corresponding reduced trajectory (mod 7) is {6, 3, 5, 2, 1, 4, 2, 1} => the multiplicative group of order 6 is G = {1, 2, 3, 4, 5, 6}.

%p nn:=10000:T:=array(1..2000):U:=array(1..2000):

%p for n from 1 to 10000000 do:

%p kk:=1:m:=n:T[kk]:=n:it:=0:

%p for i from 1 to nn while(m<>1) do:

%p if irem(m,2)=0

%p then

%p m:=m/2:kk:=kk+1:T[kk]:=m:it:=it+1:

%p else

%p m:=3*m+1:kk:=kk+1:T[kk]:=m:it:=it+1:

%p fi:

%p od:

%p if isprime(it)

%p then

%p lst:={}:

%p for p from 1 to it do:

%p lst:=lst union {irem(T[p],it)}:

%p od:

%p n0:=nops(lst):

%p if n0=it-1 and lst[1]=1

%p then

%p print(n):

%p else

%p fi:

%p fi:

%p od:

%Y Cf. A001122, A006667, A214850.

%K nonn

%O 1,1

%A _Michel Lagneau_, Jan 15 2016

%E a(14)-a(22) from _Hiroaki Yamanouchi_, Jan 19 2016

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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)