A141196 Primes of the form 16k+13.
13, 29, 61, 109, 157, 173, 269, 317, 349, 397, 461, 509, 541, 557, 653, 701, 733, 797, 829, 877, 941, 1021, 1069, 1117, 1181, 1213, 1229, 1277, 1373, 1453, 1549, 1597, 1613, 1693, 1709, 1741, 1789, 1901, 1933, 1949, 1997, 2029, 2141, 2221, 2237, 2269
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+13],AppendTo[lst,p]],{n,0,5!}];lst (* Vladimir Joseph Stephan Orlovsky, Jan 28 2009 *)
Comments