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.

A181979 Numbers n such that (29^n - 1)/28 is prime.

Original entry on oeis.org

5, 151, 3719, 49211, 77237
Offset: 1

Views

Author

Robert Price, Apr 04 2012

Keywords

Programs

  • Mathematica
    Select[Prime[Range[100000]], PrimeQ[(29^#-1)/28]&]
  • PARI
    isok(n) = isprime((29^n-1)/28); \\ Michel Marcus, Mar 13 2016