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.

A339923 Numbers k such that 14^k + 3 is prime.

Original entry on oeis.org

1, 2, 9, 24, 42, 74, 221, 620, 14064, 36697, 152048, 384558
Offset: 1

Views

Author

Paul Bourdelais, Dec 23 2020

Keywords

Examples

			1 is a term since 14^1 + 3 = 17 is a prime.
		

Crossrefs

Cf. A339924.

Programs

  • Mathematica
    Do[ If[ PrimeQ[ 14^n + 3], Print[n]], {n, 0, 200000}]
  • PARI
    is(n)=isprime(14^n + 3)

Extensions

a(12) corresponds to a probable prime discovered by Paul Bourdelais, Jan 06 2021