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.

A180629 Numbers k such that 8*k! - 1 is prime.

Original entry on oeis.org

0, 1, 3, 4, 8, 33, 121, 177, 190, 276, 473, 484, 924, 937, 1722, 2626, 4077, 4464, 6166
Offset: 1

Views

Author

Robert G. Wilson v, Sep 13 2010

Keywords

Comments

Tested to 4700. - Robert G. Wilson v, Sep 27 2010
Tested to 5127. - Jinyuan Wang, Feb 03 2020
Tested to 12000. - Michael S. Branicky, Jul 11 2024

Crossrefs

Programs

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

Extensions

a(15)-a(18) from Robert G. Wilson v, Sep 27 2010
a(19) from Michael S. Branicky, May 27 2023