cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A255208 Primes p for which exactly five bases b with 1 < b < p exist such that p is a base b Wieferich prime.

Original entry on oeis.org

653, 4909, 7723, 9811, 13691, 15413, 18133, 18223, 21061, 22147, 25679, 29131, 33923, 35353, 36913, 37633, 46021, 57527, 61819, 66107, 71059, 72643, 77867, 79867, 85061, 87509, 89113, 96757, 97213, 98641, 117977, 118163, 120247, 122209, 123653, 126443, 129061
Offset: 1

Views

Author

Felix Fröhlich, Feb 17 2015

Keywords

Comments

p = prime(n) such that A242830(n) = 5.

Crossrefs

Programs

  • PARI
    forprime(p=1, , b=2; i=0; while(b < p, if(Mod(b, p^2)^(p-1)==1, i++); b++); if(i==5, print1(p, ", ")))