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.

A239637 Numbers n such that (41^n - 1)/40 is prime.

Original entry on oeis.org

3, 83, 269, 409, 1759, 11731
Offset: 1

Views

Author

Robert Price, Mar 22 2014

Keywords

Comments

a(7) > 10^5. - Robert Price, Mar 22 2014

Programs

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