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-4 of 4 results.

A214888 Primes congruent to {2, 3} mod 11.

Original entry on oeis.org

2, 3, 13, 47, 79, 101, 113, 157, 167, 179, 211, 223, 233, 277, 311, 409, 421, 431, 443, 487, 509, 541, 563, 607, 619, 641, 673, 739, 751, 761, 773, 827, 839, 883, 937, 971, 1069, 1091, 1103, 1201, 1213, 1223, 1279, 1289, 1301, 1367, 1399, 1433, 1487, 1499
Offset: 1

Views

Author

Vincenzo Librandi, Aug 03 2012

Keywords

Crossrefs

Programs

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

A214889 Primes congruent to {2, 3} mod 13.

Original entry on oeis.org

2, 3, 29, 41, 67, 107, 197, 211, 223, 263, 353, 367, 379, 419, 431, 457, 509, 523, 587, 601, 613, 653, 691, 743, 757, 769, 809, 821, 887, 977, 991, 1069, 1237, 1277, 1289, 1303, 1367, 1381, 1433, 1459, 1471, 1511, 1523, 1549, 1601, 1627, 1667, 1693, 1783
Offset: 1

Views

Author

Vincenzo Librandi, Aug 03 2012

Keywords

Crossrefs

Programs

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

A214890 Primes congruent to {2, 3} mod 17.

Original entry on oeis.org

2, 3, 19, 37, 53, 71, 139, 173, 223, 241, 257, 359, 461, 479, 547, 563, 631, 683, 733, 751, 853, 887, 937, 971, 1039, 1091, 1193, 1277, 1447, 1481, 1499, 1549, 1567, 1583, 1601, 1669, 1753, 1787, 1873, 1889, 1907, 2111, 2161, 2179, 2213, 2281, 2297, 2383
Offset: 1

Views

Author

Vincenzo Librandi, Aug 03 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(3000) | p mod 17 in [2, 3]];
  • Mathematica
    Select[Prime[Range[3000]],MemberQ[{2,3},Mod[#,17]]&]
    Select[Flatten[(#+{2,3})&/@(17*Range[0,150])],PrimeQ] (* Harvey P. Dale, Aug 22 2020 *)

A215101 Primes congruent to {2, 3} mod 19.

Original entry on oeis.org

2, 3, 41, 59, 79, 97, 173, 193, 211, 269, 307, 383, 401, 421, 439, 743, 839, 857, 877, 953, 971, 991, 1009, 1123, 1181, 1237, 1409, 1427, 1447, 1523, 1579, 1637, 1693, 1789, 1979, 1997, 2017, 2111, 2131, 2207, 2339, 2377, 2473, 2549, 2663, 2719, 2777, 2833, 2909
Offset: 1

Views

Author

Vincenzo Librandi, Aug 04 2012

Keywords

Crossrefs

Programs

  • Magma
    [p: p in PrimesUpTo(3000) | p mod 19 in [2, 3]];
  • Mathematica
    Select[Prime[Range[3000]],MemberQ[{2,3},Mod[#,19]]&]
    Select[Flatten[#+{2,3}&/@(19*Range[0,200])],PrimeQ] (* Harvey P. Dale, Oct 07 2019 *)
Showing 1-4 of 4 results.