OFFSET
1,1
COMMENTS
Is the sequence finite or infinite?
Except for 2, 3, 5, and 7, all such primes are of the form a*10^n-b with 1 <= a <= 8 and b mod 10 = 1, 3, 7 or 9. An example of a large pair is 10^101-203 and 10^101+3. The largest known pair of probable primes is 8*10^5002-6243 and 8*10^5002+14481. - Lewis Baxter, Mar 06 2023
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..804
EXAMPLE
397 is a term as 397 and 401 are two consecutive primes with no common digits.
MATHEMATICA
First /@ Select[Partition[Prime[Range[10^6]], 2, 1], Intersection @@ IntegerDigits /@ # == {} &] (* Jayanta Basu, Aug 06 2013 *)
PROG
(PARI) isok(p) = isprime(p) && (#setintersect(Set(digits(p)), Set(digits(nextprime(p+1)))) == 0); \\ Michel Marcus, Mar 27 2023
(Python)
from itertools import count, islice
from sympy import nextprime, prevprime
def agen(): # generator of terms
yield from [2, 3, 5]
for d in count(2):
for b in range(10**(d-1), 10**d, 10**(d-1)):
p, q = prevprime(b), nextprime(b)
if set(str(p)) & set(str(q)) == set():
yield p
print(list(islice(agen(), 40))) # Michael S. Branicky, May 09 2023
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Mar 06 2002
EXTENSIONS
More terms from Larry Soule (lsoule(AT)gmail.com), Jun 21 2006
a(36) and beyond from Michael S. Branicky, May 09 2023
STATUS
approved