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.

A217349 Numbers k such that 4^k + 7 is prime.

Original entry on oeis.org

1, 2, 3, 4, 5, 8, 9, 10, 14, 15, 19, 22, 39, 44, 49, 63, 80, 87, 102, 107, 294, 305, 399, 463, 595, 599, 903, 944, 1324, 1727, 1755, 1932, 1935, 4485, 6165, 6665, 9438, 11169, 19859, 27503, 55392, 86235, 98217, 117855, 123640, 134204, 139660, 150437, 157634, 186475, 236129, 283248, 390142, 410178
Offset: 1

Views

Author

Vincenzo Librandi, Oct 01 2012

Keywords

Comments

The next terms are > 4.1*10^5. - Elmo R. Oliveira, Nov 29 2023

Examples

			For k = 14, 4^14 + 7 = 268435463 is prime.
		

Crossrefs

Cf. A057195, A059266, A089437, A104066 (associated primes).

Programs

  • Mathematica
    Select[Range[0, 5000], PrimeQ[4^# + 7] &]
  • PARI
    is(n)=ispseudoprime(4^n+7) \\ Charles R Greathouse IV, Jun 06 2017

Formula

a(n) = A057195(n)/2.

Extensions

Extended using A057195 terms by Michel Marcus, Aug 28 2015
a(51)-a(54) derived from A057195 by Elmo R. Oliveira, Nov 29 2023