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.

A180627 Numbers k such that 6*k! - 1 is prime.

Original entry on oeis.org

0, 1, 2, 5, 8, 42, 318, 326, 1054, 2987, 11243
Offset: 1

Views

Author

Robert G. Wilson v, Sep 13 2010

Keywords

Comments

Tested to 4400. - Robert G. Wilson v, Sep 28 2010
a(11) > 6300. - Jinyuan Wang, Feb 04 2020

Crossrefs

Programs

  • Mathematica
    fQ[n_] := PrimeQ[6 n! - 1]; k = 0; lst = {}; While[k < 1501, If[ fQ@k, AppendTo[lst, k]; Print@k]; k++ ]; lst
  • PARI
    is(k) = ispseudoprime(6*k!-1); \\ Jinyuan Wang, Feb 04 2020

Extensions

a(10) from Robert G. Wilson v, Sep 28 2010
a(11) from Michael S. Branicky, Jul 04 2024