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.

A128339 Numbers k such that (9^k + 5^k)/14 is prime.

Original entry on oeis.org

3, 5, 13, 17, 43, 127, 229, 277, 6043, 11131, 11821
Offset: 1

Views

Author

Alexander Adamchuk, Feb 27 2007

Keywords

Comments

All terms are primes.
a(12) > 10^5. - Robert Price, Dec 26 2012

Crossrefs

Programs

  • Magma
    [n: n in [3..300] |IsPrime((9^n + 5^n) div 14)]; // Vincenzo Librandi, Nov 02 2018
  • Mathematica
    k=9; Do[p=Prime[n]; f=(k^p+5^p)/(k+5); If[ PrimeQ[f], Print[p] ], {n,1,100}]
  • PARI
    is(n)=isprime((9^n+5^n)/14) \\ Charles R Greathouse IV, Feb 17 2017
    

Extensions

3 more PRP terms from Sean A. Irvine, Oct 01 2009