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.

A244546 Wieferich primes p to base p-th prime.

Original entry on oeis.org

997, 1879, 2617, 85091
Offset: 1

Views

Author

Felix Fröhlich, Jun 29 2014

Keywords

Comments

No further terms up to 10^6.
No further terms up to 10^11. - Luke March, Jul 16 2014

Examples

			a(1) = 997, since prime(997) = 7883 and 7883^996 % 997^2 = 1.
		

Crossrefs

Programs

  • PARI
    forprime(p=2, 10^6, q=prime(p); if(Mod(q, p^2)^(p-1)==1, print1(p, ", ")))