The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A327650 Maximum value of powers of 3 mod n. 2

%I #24 May 14 2023 09:05:58

%S 0,1,1,3,4,3,6,3,3,9,9,9,9,13,12,11,16,9,18,9,18,15,18,9,24,9,9,27,28,

%T 27,30,27,27,33,33,27,36,37,27,27,40,39,42,37,36,41,42,33,48,49,48,35,

%U 52,27,53,27,54,57,57,27,60,61,54,59,61,45,66,63,54,51

%N Maximum value of powers of 3 mod n.

%H Rémy Sigrist, <a href="/A327650/b327650.txt">Table of n, a(n) for n = 1..6561</a>

%H Rémy Sigrist, <a href="/A327650/a327650.png">Colored scatterplot of the ordinal transform of the first 3^10 terms</a> (colored pixels correspond to n's such that a(n) is a power of 3)

%F a(3^k) = 3^(k-1) for any k > 0.

%F a(3^k + 1) = 3^k for any k >= 0.

%F a(3^k - 1) = 3^(k-1) for any k > 0.

%e For n = 12:

%e - the first powers of 3 mod 12 are:

%e k 3^k mod 12

%e -- ----------

%e 0 1

%e 1 3

%e 2 9

%e 3 3

%e - those values are eventually periodic, the maximum being 9,

%e - hence a(12) = 9.

%t a[n_] := PowerMod[3, Range[0, n-1], n] // Max;

%t Table[a[n], {n, 1, 1000}] (* _Jean-François Alcover_, May 14 2023 *)

%o (PARI) a(n) = { my (p=1%n, mx=p); while (1, p=(3*p)%n; if (mx<p, mx=p, mx==p || p==0, return (mx))) }

%Y Cf. A000244, A327649.

%K nonn

%O 1,4

%A _Rémy Sigrist_, Sep 21 2019

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 June 3 19:11 EDT 2024. Contains 373087 sequences. (Running on oeis4.)