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.

A128075 Numbers k such that (3^k + 19^k)/22 is prime.

Original entry on oeis.org

3, 61, 71, 109, 9497, 36007, 50461, 66919
Offset: 1

Views

Author

Alexander Adamchuk, Feb 14 2007

Keywords

Comments

All terms are primes.
a(9) > 10^5. - Robert Price, Jul 21 2013

Crossrefs

Cf. A007658 (numbers k such that (3^k + 1)/4 is prime).
Cf. A057469 (numbers k such that (3^k + 2^k)/5 is prime).
Cf. A122853 (numbers k such that (3^k + 5^k)/8 is prime).
Cf. A059801 (numbers k such that 4^k - 3^k is prime).
Cf. A121877 (numbers k such that (5^k - 3^k)/2 is prime).

Programs

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

Extensions

a(5)-a(8) from Robert Price, Jul 21 2013