A343241 Primes congruent to 2 or 8 modulo 15.
2, 17, 23, 47, 53, 83, 107, 113, 137, 167, 173, 197, 227, 233, 257, 263, 293, 317, 347, 353, 383, 443, 467, 503, 557, 563, 587, 593, 617, 647, 653, 677, 683, 743, 773, 797, 827, 857, 863, 887, 947, 953, 977, 983
Offset: 1
Programs
-
Mathematica
Select[Range[1000], PrimeQ[#] && MemberQ[{2, 8}, Mod[#, 15]] &] (* Amiram Eldar, May 20 2021 *)
Comments