login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A255207
Primes p for which exactly four bases b with 1 < b < p exist such that p is a base b Wieferich prime.
8
487, 1163, 2203, 2731, 3373, 4391, 5261, 6343, 6451, 6569, 7753, 8377, 8863, 9041, 9397, 9463, 9941, 10079, 10321, 11783, 12703, 13121, 13151, 13807, 13903, 14419, 15061, 15263, 15313, 15601, 16631, 16883, 16943, 17477, 17519, 18253, 18773, 20173, 22279, 23291
OFFSET
1,1
COMMENTS
p = prime(n) such that A242830(n) = 4.
PROG
(PARI) forprime(p=1, , b=2; i=0; while(b < p, if(Mod(b, p^2)^(p-1)==1, i++); b++); if(i==4, print1(p, ", ")))
KEYWORD
nonn
AUTHOR
Felix Fröhlich, Feb 17 2015
STATUS
approved