A068231 Primes congruent to 11 mod 12.
11, 23, 47, 59, 71, 83, 107, 131, 167, 179, 191, 227, 239, 251, 263, 311, 347, 359, 383, 419, 431, 443, 467, 479, 491, 503, 563, 587, 599, 647, 659, 683, 719, 743, 827, 839, 863, 887, 911, 947, 971, 983, 1019, 1031, 1091, 1103, 1151, 1163, 1187, 1223
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
MATLAB
%4n-1 and 6n-1 primes n = 1:10000; n2 = 4*n-1; n3 = 3*n-1; p = primes(max(n2)); Res = intersect(n2,n3); Res2 = intersect(Res,p); % Jesse H. Crotts, Sep 25 2016
-
Magma
[p: p in PrimesUpTo(1500) | p mod 12 eq 11 ]; // Vincenzo Librandi, Aug 14 2012
-
Mathematica
Select[Prime/@Range[250], Mod[ #, 12]==11&] Select[Range[11,1500,12],PrimeQ] (* Harvey P. Dale, Sep 15 2023 *)
-
PARI
for(i=1,250, if(prime(i)%12==11, print(prime(i))))
Extensions
Edited by Dean Hickerson, Feb 27 2002
Comments