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.

A128067 Numbers k such that (3^k + 7^k)/10 is prime.

Original entry on oeis.org

3, 13, 31, 313, 3709, 7933, 14797, 30689, 38333
Offset: 1

Views

Author

Alexander Adamchuk, Feb 14 2007

Keywords

Comments

All terms are primes.
a(10) > 10^5. - Robert Price, Oct 03 2012

Crossrefs

Cf. A007658 = numbers n such that (3^n + 1)/4 is prime. Cf. A057469 = numbers n such that (3^n + 2^n)/5 is prime. Cf. A122853 = numbers n such that (3^n + 5^n)/8 is prime. Cf. A128066, A128068, A128069, A128070, A128071, A128072, A128073, A128074, A128075. Cf. A059801 = numbers n such that 4^n - 3^n is prime. Cf. A121877 = numbers n such that (5^n - 3^n)/2 is a prime. Cf. A128024, A128025, A128026, A128027, A128028, A128029, A128030, A128031, A128032.

Programs

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

Extensions

More terms from Ryan Propper, Apr 02 2007
a(7)-a(9) from Robert Price, Oct 03 2012