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.

A274215 Numbers n such that 8^n + 7^(n+1) is prime.

Original entry on oeis.org

4, 6, 46, 58, 184, 336, 29274, 98928
Offset: 1

Views

Author

Robert Price, Jun 13 2016

Keywords

Comments

a(9) > 10^5.

Crossrefs

Cf. A093765.

Programs

  • Mathematica
    Select[Range[0, 100000], PrimeQ[8^# + 7^(# + 1)] &]
  • PARI
    is(n)=ispseudoprime(8^n+7^(n+1)) \\ Charles R Greathouse IV, Jun 13 2017