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.

A187805 Numbers n such that (7^n + 6^n)/13 is prime.

Original entry on oeis.org

3, 53, 83, 487, 743
Offset: 1

Views

Author

Robert Price, Jan 06 2013

Keywords

Comments

All terms are prime.
a(6) > 10^5

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[100000] ], PrimeQ[ (7^# + 6^#)/13 ]& ]
  • PARI
    is(n)=ispseudoprime((7^n+6^n)/13) \\ Charles R Greathouse IV, Feb 17 2017