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.

A063508 Numbers n such that !n + 2n - 1 is prime.

Original entry on oeis.org

1, 2, 4, 5, 7, 13, 40, 124, 758, 940
Offset: 1

Views

Author

Robert G. Wilson v, Aug 09 2001

Keywords

Crossrefs

Cf. A063106.

Programs

  • Mathematica
    Do[ If[ PrimeQ[ Sum[ k!, {k, 0, n - 1} ] + 2n - 1 ], Print[ n ] ], {n, 1, 883} ]