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.

A359180 Numbers k such that k!^2 / 2 + 1 is prime.

Original entry on oeis.org

2, 3, 6, 18, 19, 82, 1298, 3139, 3687, 4637
Offset: 1

Views

Author

Arsen Vardanyan, Dec 18 2022

Keywords

Examples

			3!^2 / 2 + 1 = 6^2/2 + 1 = 19, a prime number, so 3 is a term.
		

Crossrefs

Programs

  • PARI
    isok(k) = (k>1) && isprime(k!^2 / 2 + 1); \\ Michel Marcus, Jan 15 2023

Extensions

a(7) from Michael S. Branicky, Dec 18 2022
a(8)-a(10) from Michael S. Branicky, Apr 10 2023