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.

A215131 Primes congruent to {3, 5, 6} mod 13.

Original entry on oeis.org

3, 5, 19, 29, 31, 71, 83, 97, 107, 109, 149, 211, 227, 239, 263, 317, 331, 367, 383, 409, 419, 421, 461, 487, 499, 523, 577, 601, 617, 643, 653, 733, 757, 773, 809, 811, 863, 877, 887, 929, 941, 967, 991, 1019, 1033, 1069, 1097, 1123, 1163, 1201, 1277, 1279
Offset: 1

Views

Author

Vincenzo Librandi, Aug 04 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(1500) | p mod 13 in [3, 5, 6]];
  • Mathematica
    Select[Prime[Range[800]],MemberQ[{3, 5, 6},Mod[#,13]]&]