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.

A187819 Numbers k such that (9^k + 8^k)/17 is prime.

Original entry on oeis.org

3, 7, 13, 19, 307, 619, 2089, 7297, 75571, 76103, 98897
Offset: 1

Views

Author

Robert Price, Dec 26 2012

Keywords

Comments

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

Crossrefs

Programs

  • Mathematica
    Select[ Prime[ Range[1, 100000] ], PrimeQ[ (9^# + 8^#)/17 ]& ]
  • PARI
    is(n)=isprime((9^n+8^n)/17) \\ Charles R Greathouse IV, Feb 17 2017