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.

A181987 Numbers n such that (39^n - 1)/38 is prime.

Original entry on oeis.org

349, 631, 4493, 16633, 36341
Offset: 1

Views

Author

Robert Price, Apr 04 2012

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Prime[Range[100000]], PrimeQ[(39^#-1)/38]&]
  • PARI
    is(n)=ispseudoprime((39^n-1)/38) \\ Charles R Greathouse IV, Jun 13 2017