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.

A255210 Primes p for which exactly seven bases b with 1 < b < p exist such that p is a base-b Wieferich prime.

Original entry on oeis.org

103291, 491531, 534851, 804367, 997961, 1026899, 1062427, 1457389, 1550513, 2327629, 2602307, 3093121, 3137257, 3181481, 3412741, 3497381, 3720179, 3814253, 4087301, 4234057, 4891973, 5063087, 5131237, 5194789, 5736611, 6253349, 6903191, 6906469, 6945047
Offset: 1

Views

Author

Felix Fröhlich, Mar 07 2015

Keywords

Comments

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

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==7, print1(p, ", ")))