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.

A229542 Numbers n such that (19^n - 2^n)/17 is prime.

Original entry on oeis.org

11, 19, 79, 631, 1787, 2011, 2381, 20219, 49523
Offset: 1

Views

Author

Robert Price, Sep 25 2013

Keywords

Comments

All terms are primes.
a(10) > 2*10^5.

Crossrefs

Programs

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