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.

A272781 Numbers n such that 6^n-5^(n+1) is prime.

Original entry on oeis.org

9, 14, 32, 48, 78, 85, 108, 134, 834, 1701, 2275, 3103, 5795, 10307, 17243, 24045, 31085, 32613, 40014
Offset: 1

Views

Author

Robert Price, May 06 2016

Keywords

Comments

a(20) > 10^5.

Examples

			9 is a member since 6^9 - 5^10 = 10077696 - 9765625 = 312071 which is a prime number.
		

Crossrefs

Programs

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