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.

A339924 Numbers k such that 14^k - 3 is prime.

Original entry on oeis.org

1, 2, 3, 10, 18, 19, 27, 122, 184, 347, 448, 542, 1685, 5618, 6208, 9867, 25522, 37688, 47067, 79195, 114592, 251797
Offset: 1

Views

Author

Paul Bourdelais, Dec 23 2020

Keywords

Examples

			1 is a term since 14^1 - 3 = 11 is a prime.
		

Crossrefs

Cf. A339923.

Programs

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