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.

Showing 1-2 of 2 results.

A215302 Primes congruent to {1, 2, 3, 4} mod 11.

Original entry on oeis.org

2, 3, 13, 23, 37, 47, 59, 67, 79, 89, 101, 103, 113, 157, 167, 179, 191, 199, 211, 223, 233, 257, 277, 311, 331, 353, 367, 389, 397, 409, 419, 421, 431, 433, 443, 463, 487, 499, 509, 521, 541, 563, 587, 607, 617, 619, 631, 641, 653, 661, 673, 683, 719, 727
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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

A215280 Primes congruent to {2, 3, 4} mod 13.

Original entry on oeis.org

2, 3, 17, 29, 41, 43, 67, 107, 173, 197, 199, 211, 223, 251, 263, 277, 353, 367, 379, 419, 431, 433, 457, 509, 523, 563, 587, 601, 613, 641, 653, 691, 719, 743, 757, 769, 797, 809, 821, 823, 887, 953, 977, 991, 1031, 1069, 1109, 1187, 1213, 1237, 1277
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Comments

Subsequence of A215303. - R. J. Mathar, Nov 26 2014

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(2000) | p mod 13 in [2..4]];
  • Mathematica
    Select[Prime[Range[600]], MemberQ[{2, 3, 4}, Mod[#, 13]] &]
Showing 1-2 of 2 results.