Displaying 1-6 of 6 results found.
page
1
Concatenations of pairs of primes that differ by 100.
+10
5
3103, 7107, 13113, 31131, 37137, 67167, 73173, 79179, 97197, 127227, 139239, 151251, 157257, 163263, 181281, 193293, 211311, 283383, 331431, 349449, 367467, 379479, 409509, 421521, 457557, 463563, 487587, 499599, 541641, 547647, 577677
COMMENTS
Integers in this sequence can never be prime, as, starting from the second one, they are all multiples of 3.
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:
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)]
Concatenations of pairs of primes that differ by 1000.
+10
3
131013, 191019, 311031, 611061, 971097, 1031103, 1091109, 1511151, 1631163, 1811181, 1931193, 2231223, 2291229, 2771277, 2831283, 3071307, 3671367, 3731373, 4091409, 4331433, 4391439, 4871487, 4991499, 5231523, 5711571
COMMENTS
All terms are multiples of 3.
FORMULA
a(n) = Concatenate(P, P+1000) iff P prime and P+1000 prime.
EXAMPLE
1811181 is in this sequence because 181 is prime, 181+1000 = 1181 is prime and those two primes are concatenated.
MATHEMATICA
10001#+1000&/@Select[Prime[Range[150]], PrimeQ[#+1000]&] (* Harvey P. Dale,Sep 01 2017 *)
Concatenations of pairs of primes that differ by 1000000.
+10
2
31000003, 371000037, 1511000151, 1931000193, 1991000199, 2111000211, 3131000313, 3671000367, 3971000397, 4091000409, 4571000457, 5411000541, 5471000547, 5771000577, 6191000619, 6911000691, 8291000829, 8591000859
COMMENTS
After the first element, 31000003, which is prime, integers in this sequence can never be prime, as they are all multiples of 3. They can be semiprimes, as is the case for 3671000367 = 3 x 1223666789, 4571000457 = 3 x 1523666819, 5411000541 = 3 x 1803666847, 9071000907 = 3 x 3023666969.
FORMULA
a(n) = Concatenate(P, P+1000000) iff P prime and P+1000000 prime.
EXAMPLE
Prime(47) = 211 and 211 + 1000000 = Prime(78515) = 1000211. Concatenating these two primes gives 2111000211 = 3^4 * 17^2 * 31 * 2909.
Concatenations of pairs of primes that differ by 10^9.
+10
2
71000000007, 971000000097, 1031000000103, 1811000000181, 2231000000223, 2411000000241, 2711000000271, 3491000000349, 4091000000409, 4331000000433, 4391000000439, 6071000000607, 6131000000613, 7871000000787, 8291000000829
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(42) concatenated with Prime(50847544) = 1811000000181 = 3 x 603666666727.
FORMULA
a(n) = Concatenate(P, P+1000000000) iff P prime and P+1000000000 prime.
EXAMPLE
181 is prime, 181+10^9 = 1000000181 is prime, so their concatenation is an element of this sequence: 1811000000181. Coincidentally, prime(181)+10^9 = 1000001087 is also prime.
MATHEMATICA
FromDigits[Join[IntegerDigits[#], IntegerDigits[#+10^9]]]&/@Select[Prime[ Range[ 200]], PrimeQ[ #+ 10^9]&] (* Harvey P. Dale,May 14 2022 *)
CROSSREFS
Cf. A000040, A001358, A023201, A100750, A103195, A103206, A104718, A104719, A103523, A103534, A103576.
Concatenations of pairs of primes that differ by 10^12.
+10
1
611000000000061, 1631000000000163, 1931000000000193, 2111000000000211, 2711000000000271, 3311000000000331, 5471000000000547, 6611000000000661, 7511000000000751, 7871000000000787, 9971000000000997, 10511000000001051
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.
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
Cf. A000040, A001358, A023201, A100750, A103195, A103206, A104718, A104719, A103523, A103534, A103576, A103617.
The larger member of a prime pair (p, p+100).
+10
1
103, 107, 113, 131, 137, 167, 173, 179, 197, 227, 239, 251, 257, 263, 281, 293, 311, 383, 431, 449, 467, 479, 509, 521, 557, 563, 587, 599, 641, 647, 677, 701, 719, 743, 761, 773, 809, 827, 839, 857, 887, 911, 929, 953, 977, 983, 1019, 1091, 1097, 1109, 1151, 1163
EXAMPLE
a(1) = 3+100=103, a(2)=7+100=107, a(3)=13+100=113.
PROG
(Magma) [p+100: p in PrimesUpTo(1200)| IsPrime(p+100)]; // Vincenzo Librandi,Sep 12 2013
EXTENSIONS
Definition rephrased, relation to A100750added, 563, 719 etc. inserted - R. J. Mathar,Sep 16 2009
Search completed in 0.014 seconds
|