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.

A212583 Primes p such that p^2 divides 6^(p-1) - 1.

Original entry on oeis.org

66161, 534851, 3152573
Offset: 1

Views

Author

Felix Fröhlich, May 22 2012

Keywords

Comments

Base 6 Wieferich primes.
Next term > 4.119*10^13. [See Fischer link]

References

  • P. Ribenboim, The New Book of Prime Number Records, Springer-Verlag, 1996, page 347

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1000000]], PowerMod[6, # - 1, #^2] == 1 &] (* Robert Price, May 17 2019 *)
  • PARI
    N=10^9; default(primelimit,N);
    forprime(n=2,N,if(Mod(6,n^2)^(n-1)==1,print1(n,", ")));
    \\ Joerg Arndt, May 01 2013