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.

A215155 Primes congruent to {2, 3, 5, 7} mod 13.

Original entry on oeis.org

2, 3, 5, 7, 29, 31, 41, 59, 67, 83, 107, 109, 137, 163, 197, 211, 223, 239, 241, 263, 293, 317, 353, 367, 379, 397, 419, 421, 431, 449, 457, 499, 509, 523, 577, 587, 601, 613, 631, 653, 683, 691, 709, 733, 743, 757, 761, 769, 787, 809, 811, 821, 839, 863
Offset: 1

Views

Author

Vincenzo Librandi, Aug 05 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1000) | p mod 13 in {2, 3, 5, 7} ];
  • Mathematica
    Select[Prime[Range[600]],MemberQ[{2,3, 5, 7},Mod[#,13]]&]