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.

A142733 Primes congruent to 6 mod 59.

Original entry on oeis.org

419, 773, 1009, 1481, 2543, 2897, 3251, 4549, 4903, 5021, 6673, 6791, 7027, 7499, 7853, 8089, 8443, 9151, 9623, 9859, 10331, 10567, 11393, 12101, 12809, 13163, 13399, 14107, 14461, 15287, 15641, 15877, 16231, 16349, 16703, 17293, 18119, 19181, 19417, 19889
Offset: 1

Views

Author

N. J. A. Sloane, Jul 11 2008

Keywords

Crossrefs

Cf. A000040.

Programs

  • Magma
    [p: p in PrimesUpTo(20000) | p mod 59 eq 6 ]; // Vincenzo Librandi, Sep 02 2012
  • Mathematica
    Select[Prime[Range[2600]], MemberQ[{6}, Mod[#, 59]] &] (* Vincenzo Librandi, Sep 02 2012 *)
    Select[Range[6,20000,59],PrimeQ] (* Harvey P. Dale, Jun 03 2019 *)