A092146 Primes of the form p + 10 where p is a prime.
13, 17, 23, 29, 41, 47, 53, 71, 83, 89, 107, 113, 137, 149, 167, 173, 191, 233, 239, 251, 281, 293, 317, 347, 359, 383, 389, 419, 431, 443, 449, 467, 509, 557, 587, 617, 641, 653, 683, 701, 719, 743, 761, 797, 821, 839, 863, 887, 929, 947, 977, 1019, 1031
Offset: 1
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
lst={};Do[p=Prime[n];If[PrimeQ[p=p+10],AppendTo[lst,p]],{n,6!}];lst (* Vladimir Joseph Stephan Orlovsky, Jan 29 2009 *) Select[Prime[Range[200]]+10,PrimeQ] (* Harvey P. Dale, Aug 03 2018 *)
Formula
a(n) = 10 + A023203(n). - Alois P. Heinz, Feb 27 2020