A030431 Primes of form 10n+3.
3, 13, 23, 43, 53, 73, 83, 103, 113, 163, 173, 193, 223, 233, 263, 283, 293, 313, 353, 373, 383, 433, 443, 463, 503, 523, 563, 593, 613, 643, 653, 673, 683, 733, 743, 773, 823, 853, 863, 883, 953, 983, 1013, 1033, 1063, 1093, 1103, 1123, 1153, 1163, 1193
Offset: 1
Keywords
Links
- Michael B. Porter, Table of n, a(n) for n = 1..100000
- A. Granville and G. Martin, Prime number races, arXiv:math/0408319 [math.NT], 2004.
Programs
-
Mathematica
Select[Prime@Range[200], Mod[ #, 10] == 3 &] (* Ray Chandler, Nov 07 2006 *) Select[10 Range[0, 150] + 3, PrimeQ] (* Harvey P. Dale, Apr 06 2011 *)
-
PARI
select(n->n%10==3, primes(500)) \\ Charles R Greathouse IV, Apr 29 2015
Formula
a(n) = 10*A102338(n) + 3.
Extensions
Extended by Ray Chandler, Nov 07 2006
Comments