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.

A128340 Numbers k such that (11^k + 5^k)/16 is prime.

Original entry on oeis.org

7, 11, 181, 421, 2297, 2797, 4129, 4139, 7151, 29033
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(11) > 10^5. - Robert Price, Feb 09 2013

Crossrefs

Programs

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

Extensions

a(5)-a(10) from Robert Price, Feb 09 2013