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!)
A281747 Smallest b > 1 such that p = prime(n) satisfies b^(p-1) == 1 (mod p^p). 1

%I #30 Feb 03 2017 21:56:56

%S 5,26,1068,82681,5392282366,11356596271444,34451905517028761171,

%T 340625514346676110671584,308318432223607315018221180590,

%U 8566187045843934976180705488213013173127,1099862052702774330481800364074681495062836757,8170421001593885871548404108552563632485969048059688187

%N Smallest b > 1 such that p = prime(n) satisfies b^(p-1) == 1 (mod p^p).

%C a(n) is the element in row prime(n), column n of the table in A257833.

%C Is the sequence always nondecreasing, or stronger, is it always increasing?

%C For odd primes p, if c is a primitive root mod p^p then b == c^(p^(p-1)) (mod p^p) satisfies this. Thus a(n) < prime(n)^prime(n) for n > 1. - _Robert Israel_, Jan 30 2017

%H Robert Israel, <a href="/A281747/b281747.txt">Table of n, a(n) for n = 1..76</a>

%H W. Keller and J. Richstein, <a href="https://doi.org/10.1090/S0025-5718-04-01666-7">Solutions of the congruence a^(p-1) == 1 (mod p^r)</a>, Math. Comp. 74 (2005), 927-936.

%p f:= proc(p) local c,j;

%p c:= numtheory:-primroot(p^p);

%p min(seq(c &^ (j*p^(p-1)) mod p^p, j=1..p-2))

%p end proc:

%p 5, seq(f(ithprime(i)),i=2..15); # _Robert Israel_, Jan 30 2017

%t Table[b = 2; While[PowerMod[b, (# - 1), #^#] &@ Prime@ n != 1, b++]; b, {n, 4}] (* _Michael De Vlieger_, Jan 30 2017 *)

%o (PARI) a(n) = my(p=prime(n), b=2); while(Mod(b, p^p)^(p-1)!=1, b++); b

%Y Cf. A257833.

%K nonn,hard,more

%O 1,1

%A _Felix Fröhlich_, Jan 29 2017

%E More terms from _Robert Israel_, Jan 30 2017

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