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.

A063106 Primes of form !n + 2n - 1.

Original entry on oeis.org

2, 5, 17, 43, 887, 522956339, 20935051082417771847631371547939998232420940393
Offset: 1

Views

Author

Jason Earls, Aug 08 2001

Keywords

Crossrefs

Cf. A003422.

Programs

  • PARI
    for(n=1,50,x=sum(k=0,n-1,k!)+(2*n-1); if(isprime(x),print(x)))