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.

A215166 Primes congruent to {1, 4} mod 19.

Original entry on oeis.org

23, 61, 137, 191, 229, 251, 419, 457, 479, 571, 593, 631, 647, 761, 821, 859, 1049, 1087, 1103, 1163, 1201, 1217, 1277, 1429, 1483, 1543, 1559, 1597, 1619, 1657, 1733, 1787, 1847, 1901, 1999, 2053, 2113, 2129, 2243, 2281, 2341, 2357, 2417, 2531, 2683
Offset: 1

Views

Author

Vincenzo Librandi, Aug 06 2012

Keywords

Crossrefs

Programs

  • Magma
    [ p: p in PrimesUpTo(3000) | p mod 19 in {1, 4} ];
  • Mathematica
    Select[Prime[Range[3000]],MemberQ[{1,4},Mod[#,19]]&]