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

A045320 Primes not congruent to 5 (mod 7).

Original entry on oeis.org

2, 3, 7, 11, 13, 17, 23, 29, 31, 37, 41, 43, 53, 59, 67, 71, 73, 79, 83, 97, 101, 107, 109, 113, 127, 137, 139, 149, 151, 157, 163, 167, 179, 181, 191, 193, 197, 199, 211, 223, 227, 233, 239, 241, 251, 263, 269, 277, 281, 283, 293, 307, 311, 317, 331, 337, 347
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A045334.

Programs

  • Mathematica
    Select[Prime[Range[2000]],Mod[#,7]!=5&] (* Harvey P. Dale, Feb 26 2013 *)
  • PARI
    forprime(p=2, 350, if(p%7 != 5, print1(p, ", "))) \\ Mohammed Yaseen, Mar 18 2023

Extensions

Offset corrected by Mohammed Yaseen, Mar 18 2023

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

Original entry on oeis.org

2, 3, 13, 17, 23, 37, 47, 59, 61, 67, 79, 83, 89, 101, 103, 113, 127, 149, 157, 167, 179, 191, 193, 199, 211, 223, 233, 257, 277, 281, 311, 331, 347, 353, 367, 389, 397, 409, 419, 421, 431, 433, 443, 457, 463, 479, 487, 499, 509, 521, 523, 541, 563, 587
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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

A215323 Primes congruent to {1, 2, 3, 4, 6} mod 13.

Original entry on oeis.org

2, 3, 17, 19, 29, 41, 43, 53, 67, 71, 79, 97, 107, 131, 149, 157, 173, 197, 199, 211, 223, 227, 251, 263, 277, 313, 331, 353, 367, 379, 383, 409, 419, 431, 433, 443, 457, 461, 487, 509, 521, 523, 547, 563, 587, 599, 601, 613, 617, 641, 643, 653, 677, 691
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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

A215324 Primes congruent to {1, 2, 3, 4, 6} mod 17.

Original entry on oeis.org

2, 3, 19, 23, 37, 53, 71, 89, 103, 137, 139, 157, 173, 191, 193, 223, 227, 239, 241, 257, 293, 307, 359, 397, 409, 431, 443, 461, 463, 479, 499, 547, 563, 599, 601, 613, 631, 647, 683, 701, 733, 751, 769, 839, 853, 887, 907, 919, 937, 941, 953, 971
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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

A215325 Primes congruent to {1, 2, 3, 4, 6} mod 19.

Original entry on oeis.org

2, 3, 23, 41, 59, 61, 79, 97, 101, 137, 139, 173, 191, 193, 211, 229, 251, 269, 307, 367, 383, 401, 419, 421, 439, 443, 457, 479, 557, 571, 593, 631, 647, 709, 743, 761, 821, 823, 839, 857, 859, 877, 937, 953, 971, 991, 1009, 1013, 1049, 1051, 1087
Offset: 1

Views

Author

Vincenzo Librandi, Aug 08 2012

Keywords

Crossrefs

Programs

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