A055781 Primes q of the form q = 10p + 1, where p is also prime.
31, 71, 131, 191, 311, 431, 971, 1031, 1091, 1511, 1571, 1811, 1931, 2111, 2411, 2711, 3371, 3491, 3671, 4091, 4211, 4391, 4871, 5231, 5471, 5711, 6011, 6131, 6311, 6911, 7331, 7691, 8111, 8231, 8291, 8831, 9371, 10091, 10211, 10331, 10391, 10631
Offset: 1
Keywords
Examples
1031 = 103*10 + 1, 1 appended to 103.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
select(isprime, map(t-> 10*t+1, select(isprime, [3,seq(i,i=7..2000,6)]))); # Robert Israel, Jun 13 2017
-
Mathematica
Select[10Prime[Range[200]]+1,PrimeQ] (* Harvey P. Dale, Feb 04 2011 *)
-
PARI
is(n)=n%10==1 && isprime(n) && isprime(n\10) \\ Charles R Greathouse IV, Jun 17 2017
Comments