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.

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

Original entry on oeis.org

2, 14, 30, 56, 96, 192, 200, 462, 540, 1400, 2756, 9030, 99702
Offset: 1

Views

Author

Herman H. Rosenfeld (herm3(AT)pacbell.net), May 18 2004

Keywords

Comments

a(14) > 10^5. - Robert Price, Feb 18 2016

Examples

			14 is a member since 814+712 = 4494935521511 which is a prime number.
		

Crossrefs

Programs

  • Mathematica
    Do[ If[ PrimeQ[8^n + 7^(n - 1)], Print[n]], {n, 4000}]
  • PARI
    is(n)=isprime(8^n+7^(n-1)) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

More terms from Robert G. Wilson v, Jun 18 2004
a(12)-a(13) from Robert Price, Feb 18 2016