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.

A215305 Primes congruent to {1, 2, 3, 4} mod 19.

Original entry on oeis.org

2, 3, 23, 41, 59, 61, 79, 97, 137, 173, 191, 193, 211, 229, 251, 269, 307, 383, 401, 419, 421, 439, 457, 479, 571, 593, 631, 647, 743, 761, 821, 839, 857, 859, 877, 953, 971, 991, 1009, 1049, 1087, 1103, 1123, 1163, 1181, 1201, 1217, 1237, 1277
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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