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.

A339922 Numbers k such that 20^k - 3 is prime.

Original entry on oeis.org

1, 2, 5, 7, 9, 11, 15, 37, 59, 119, 154, 439, 745, 799, 1260, 1444, 3306, 8890, 14604, 15869, 20195, 99055, 186554, 396120
Offset: 1

Views

Author

Paul Bourdelais, Dec 23 2020

Keywords

Examples

			1 is a term since 20^1 - 3 = 17 is a prime.
		

Crossrefs

Cf. A339921.

Programs

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

Extensions

a(24) from Paul Bourdelais, Jan 28 2021