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.

A290116 Primes of the form k! / 2 - 1.

Original entry on oeis.org

2, 11, 59, 359, 181439, 4111419327088961408862781439999999, 16726263306581903554085031026720375832575999999999
Offset: 1

Views

Author

Robert Price, Jul 19 2017

Keywords

Examples

			6! / 2 - 1 = 359, which is prime, so 359 is in the sequence.
7! / 2 - 1 = 2519 = 11 * 229, so 2519 is not in the sequence.
		

Crossrefs

Programs

  • Mathematica
    Select[Table[k! / 2 - 1, {k, 2, 100}], PrimeQ[#]&]

Formula

a = (A082671(n)!-2)/2.