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!)
A268466 Smallest m > 1 such that m^m == 1 (mod n). 2

%I #43 Nov 30 2023 10:20:13

%S 2,3,2,5,4,7,6,9,8,11,5,13,3,9,4,17,4,19,9,21,8,5,22,25,24,3,26,9,7,

%T 31,6,33,10,35,6,37,9,9,8,41,10,43,6,5,8,47,46,49,18,51,4,9,13,55,12,

%U 9,20,7,29,61,15,35,8,65,8,25,22,69,22,51,5,73,18,9,26,9,12,79,24,81

%N Smallest m > 1 such that m^m == 1 (mod n).

%C For n > 1, a(n) <= n + (-1)^n = A065190(n).

%C Conjecture: a(n) = n + (-1)^n for infinitely many n.

%C If A002322(n) is coprime to n, then a(n) <= A002322(n).

%C From _Robert Israel_, Feb 05 2016: (Start)

%C For m > 1, a(n) = m iff n is a divisor of m^m - 1 that is not a divisor of k^k - 1 for 1 < k < m.

%C In particular, a(m^m - 1) = m.

%C Is there any m such that this is the only n for which a(n) = m? (End)

%C If n > m^m - 1, then a(n) > m. - _Thomas Ordowski_, Oct 20 2019

%H Robert Israel, <a href="/A268466/b268466.txt">Table of n, a(n) for n = 1..10000</a>

%p f:= proc(n) local k;

%p for k from 2 do if igcd(k,n) = 1 and k &^ k mod n = 1 then return k fi od

%p end proc:

%p 2,seq(f(n),n=2..100); # _Robert Israel_, Feb 05 2016

%t {2}~Join~Table[SelectFirst[Range[2, 1000], Mod[#^#, n] == 1 &], {n, 2, 80}] (* _Michael De Vlieger_, Feb 05 2016, corrected by _Harvey P. Dale_, Sep 10 2021 *)

%t smg1[n_]:=Module[{m=2},While[PowerMod[m,m,n]!=1,m++];m]; Join[{2},Array[ smg1,80,2]] (* _Harvey P. Dale_, Aug 13 2021 *)

%o (PARI) a(n) = {my(m = 2); while (Mod(m,n)^m != Mod(1, n), m++); m;} \\ _Michel Marcus_, Feb 05 2016

%Y Cf. A065190.

%K nonn

%O 1,1

%A _Thomas Ordowski_, Feb 05 2016

%E More terms from _Michel Marcus_, Feb 05 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 August 14 00:08 EDT 2024. Contains 375146 sequences. (Running on oeis4.)