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.

Showing 1-1 of 1 results.

A339921 Numbers k such that 20^k + 3 is prime.

Original entry on oeis.org

1, 5, 7, 13, 15, 18, 22, 61, 85, 208, 271, 898, 2142, 2856, 4392, 17171, 74886, 78901, 271951, 326600
Offset: 1

Views

Author

Paul Bourdelais, Dec 23 2020

Keywords

Examples

			1 is a term since 20^1 + 3 = 23 is a prime.
		

Crossrefs

Cf. A339922.

Programs

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

Extensions

a(19)-a(20) correspond to probable primes discovered by Paul Bourdelais, Jan 06 2021
Showing 1-1 of 1 results.