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!)
A123692 Primes p such that p^2 divides 5^(p-1) - 1. 31
2, 20771, 40487, 53471161, 1645333507, 6692367337, 188748146801 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Dorais and Klyve proved that there are no further terms up to 9.7*10^14.
a(6) and a(7) were found by Keller and Richstein (cf. Keller, Richstein, 2005). - Felix Fröhlich, Jan 06 2017
Prime terms of A242959. - Felix Fröhlich, Jan 06 2017
LINKS
Amir Akbary and Sahar Siavashi, The Largest Known Wieferich Numbers, INTEGERS, 18(2018), A3. See Table 1 p. 5.
Chris K. Caldwell, The Prime Glossary, Fermat quotient.
François G. Dorais and Dominic Klyve, A Wieferich prime search up to p < 6.7*10^15, J. Integer Seq. 14 (2011), Art. 11.9.2, 1-14.
W. Keller and J. Richstein, Solutions of the congruence a^p-1 == 1 (mod p^r), Math. Comp. 74 (2005), 927-936.
MATHEMATICA
Select[Prime[Range[2500]], Divisible[5^(# - 1) - 1, #^2] &] (* Alonso del Arte, Aug 01 2014 *)
Select[Prime[Range[55*10^6]], PowerMod[5, #-1, #^2]==1&] (* The program generates the first 4 terms of the sequence. *) (* Harvey P. Dale, Jan 29 2023 *)
PROG
(PARI)
N=10^9; default(primelimit, N);
forprime(n=2, N, if(Mod(5, n^2)^(n-1)==1, print1(n, ", ")));
\\ Joerg Arndt, May 01 2013
CROSSREFS
Sequence in context: A346988 A339476 A242959 * A290741 A261362 A132942
KEYWORD
hard,nonn,more
AUTHOR
Max Alekseyev, Oct 07 2006
EXTENSIONS
More terms from Alexander Adamchuk, Nov 27 2006
Updated by Max Alekseyev, Jan 29 2012
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 May 2 21:21 EDT 2024. Contains 372203 sequences. (Running on oeis4.)