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!)
A125636 Smallest odd prime base q such that p^2 divides q^(p-1) - 1, where p = prime(n). 19
5, 17, 7, 19, 3, 19, 131, 127, 263, 41, 229, 691, 313, 19, 53, 521, 53, 601, 1301, 11, 619, 31, 269, 3187, 53, 181, 43, 317, 499, 373, 911, 659, 19, 3659, 313, 751, 233, 4373, 3307, 419, 2591, 313, 1249, 2897, 349, 709, 331, 1973, 1933, 503, 821, 977, 2371, 263 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
W. Keller and J. Richstein, Fermat quotients that are divisible by p.
MAPLE
a:= proc(p)
local q;
q:= 3;
while (q &^ (p-1) - 1) mod p^2 <> 0 do
q:= nextprime(q)
od:
q
end proc:
seq(a(ithprime(n)), n=1..100); # Robert Israel, Nov 24 2014
MATHEMATICA
Table[Function[p, q = 3; While[! Divisible[q^(p - 1) - 1, p^2], q = NextPrime@ q]; q]@ Prime@ n, {n, 54}] (* Michael De Vlieger, Feb 12 2017 *)
PROG
(PARI) a(n) = {p = prime(n); forprime(q=3, , if (Mod(q, p^2)^(p-1) == 1, return (q)); ); } \\ Michel Marcus, Nov 24 2014
CROSSREFS
Cf. A125637 (analogous with p^3 instead of p^2).
Cf. A125609 (q=3), A125610 (q=5), A125611 (q=7), A125612 (q=11), A125632 (q=13), A125633 (q=17), A125634 (q=19): sequences of smallest prime p such that q^n divides p^(q-1) - 1.
Sequence in context: A093558 A170866 A337031 * A355658 A156323 A286816
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Nov 28 2006
EXTENSIONS
Removed an incorrect comment. - Felix Fröhlich, Feb 12 2017
STATUS
approved

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 05:44 EDT 2024. Contains 373054 sequences. (Running on oeis4.)