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.

A215379 Primes congruent to {0, 1, 2, 3} mod 13.

Original entry on oeis.org

2, 3, 13, 29, 41, 53, 67, 79, 107, 131, 157, 197, 211, 223, 263, 313, 353, 367, 379, 419, 431, 443, 457, 509, 521, 523, 547, 587, 599, 601, 613, 653, 677, 691, 743, 757, 769, 809, 821, 859, 887, 911, 937, 977, 991, 1069, 1093, 1171
Offset: 1

Views

Author

Vincenzo Librandi, Aug 09 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1200) | p mod 13 in [0..3]];
  • Mathematica
    Select[Prime[Range[300]],MemberQ[{0,1, 2,3},Mod[#,13]]&]