OFFSET
1,1
COMMENTS
Integers in this sequence can never be prime, as, starting from the second one, they are all multiples of 3.
LINKS
Robert Israel, Table of n, a(n) for n = 1..9832
FORMULA
List: concatenate(p, p+100) iff p and p+100 are primes.
EXAMPLE
9191019 is in this sequence because 919 is prime, 919+100 = 1019 is prime and 9191019 is the concatenation of those two primes differing by 100.
MAPLE
f:= proc(n) if isprime(n) and isprime(n+100) then 10^(1+ilog10(n+100))*n+n+100 fi end proc:
map(f, [3, seq(i, i=7..1000, 6)]); # Robert Israel, Dec 07 2015
MATHEMATICA
FromDigits[Join@@IntegerDigits/@{#, #+100}]&/@Select[Prime@Range@200, PrimeQ[#+100]&] (* Giorgos Kalogeropoulos, Jul 04 2021 *)
PROG
(Python)
from sympy import isprime, primerange as prange
def auptop(lim):
return [int(str(p)+str(p+100)) for p in prange(2, lim+1) if isprime(p+100)]
print(auptop(577)) # Michael S. Branicky, Jul 04 2021
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, Mar 21 2005
STATUS
approved