A141195 Primes of the form 16k+11.
11, 43, 59, 107, 139, 251, 283, 331, 347, 379, 443, 491, 523, 571, 587, 619, 683, 811, 827, 859, 907, 971, 1019, 1051, 1163, 1259, 1291, 1307, 1451, 1483, 1499, 1531, 1579, 1627, 1723, 1787, 1867, 1931, 1979, 2011, 2027, 2203, 2251, 2267, 2347, 2411, 2459
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n=1..1000
Programs
-
Mathematica
lst={};Do[If[PrimeQ[p=16*n+11],AppendTo[lst,p]],{n,0,5!}];lst (* Vladimir Joseph Stephan Orlovsky, Jan 28 2009 *) Select[16*Range[0,200]+11,PrimeQ] (* Harvey P. Dale, Aug 22 2014 *)