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.

A244260 Primes p such that p^2 divides 18^(p-1) - 1.

Original entry on oeis.org

5, 7, 37, 331, 33923, 1284043
Offset: 1

Views

Author

Felix Fröhlich, Jun 24 2014

Keywords

Comments

Base 18 Wieferich primes. According to Richard Fischer there is no other term up to approximately 5*10^13.

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[1000000]], PowerMod[18, # - 1, #^2] == 1 &] (* Robert Price, May 17 2019 *)
  • PARI
    forprime(n=2, 10^9, if(Mod(18, n^2)^(n-1)==1, print1(n, ", ")));