A104873 Concatenations of pairs of primes that differ by 10^12.
611000000000061, 1631000000000163, 1931000000000193, 2111000000000211, 2711000000000271, 3311000000000331, 5471000000000547, 6611000000000661, 7511000000000751, 7871000000000787, 9971000000000997, 10511000000001051
Offset: 1
Examples
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.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
#*10^13+10^12+#&/@Select[Prime[Range[200]],PrimeQ[#+10^12]&] (* Harvey P. Dale, Jan 18 2021 *)
Formula
a(n) = Concatenate(P, P+10^12) iff P prime and P+10^12 prime.
Comments