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.

A128348 Numbers k such that (12^k - 5^k)/7 is prime.

Original entry on oeis.org

2, 3, 31, 41, 53, 101, 421, 1259, 4721, 45259
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
Primality of the primes formed by a(8) and a(9) were certified by Primo. - Ray G. Opao, Jul 01 2012
a(11) > 10^5. - Robert Price, Mar 02 2013

Crossrefs

Programs

  • Mathematica
    k=12; Do[p=Prime[n]; f=(k^p-5^p)/(k-5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((12^n-5^n)/7) \\ Charles R Greathouse IV, Feb 17 2017

Extensions

a(8) and a(9) from Ray G. Opao, Jul 01 2012
a(10) from Robert Price, Mar 02 2013