OFFSET
1,1
COMMENTS
100*p + 11 has the effect of appending 11 to p.
Primes of the form 3*k + 1 are never in this sequence, as 100*(3*k + 1) + 11 can be simplified to 3*(100*k + 37).
EXAMPLE
2 is a term, as 100*2 + 11 is 211, which are both prime.
101 is a term, as 100*101 + 11 is 10111 which are both prime.
PROG
(Python)
from sympy import isprime
print([k for k in range(2000) if isprime(100*k+11) and isprime(k)])
CROSSREFS
KEYWORD
nonn
AUTHOR
Daniel Blam, Aug 09 2022
STATUS
approved
