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.

A215391 Primes congruent to {1, 2} mod 13.

Original entry on oeis.org

2, 41, 53, 67, 79, 131, 157, 197, 223, 313, 353, 379, 431, 443, 457, 509, 521, 547, 587, 599, 613, 677, 691, 743, 769, 821, 859, 911, 937, 977, 1093, 1171, 1223, 1237, 1249, 1289, 1301, 1327, 1367, 1471, 1483, 1523, 1549, 1601, 1613, 1627, 1783, 1847
Offset: 1

Views

Author

Vincenzo Librandi, Aug 10 2012

Keywords

Crossrefs

Programs

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