OFFSET
1,1
COMMENTS
Integers in this sequence can never be prime, as they are all multiples of 3. They can be semiprimes, as is the case for Prime(177) concatenated with Prime(37607912056) = 10511000000001051 = 3 * 3503666666667017.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = Concatenate(P, P+10^12) iff P prime and P+10^12 prime.
EXAMPLE
61 is prime, specifically prime(18) and 61 + 10^12 is prime, specifically prime(7607912020), so their concatenation is in this sequence: 611000000000061. The concatenation is not itself prime, as it equals 3 * 7 * 23 * 1265010351967.
MATHEMATICA
#*10^13+10^12+#&/@Select[Prime[Range[200]], PrimeQ[#+10^12]&] (* Harvey P. Dale, Jan 18 2021 *)
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, Mar 29 2005
STATUS
approved