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.

A073827 Numbers n such that 1 + 0!*1!*2!*...*n! is prime.

Original entry on oeis.org

0, 1, 2, 3, 7, 14
Offset: 1

Views

Author

Rick L. Shepherd, Aug 16 2002

Keywords

Comments

Any additional terms are greater than 115 with the next prime having 9744 or more digits.

Crossrefs

Cf. A073828 (corresponding primes), A000178 (superfactorials), A019515.

Programs

  • PARI
    pr=1; for(n=0,115, pr=pr*n!; if(isprime(pr+1), print1(n,",")))