A255976 Primes that are the concatenation of two 3-digit primes.
101107, 101113, 101149, 101173, 101197, 101281, 101293, 101347, 101359, 101383, 101419, 101449, 101467, 101503, 101599, 101641, 101653, 101701, 101719, 101797, 101839, 101863, 101929, 101977, 103307, 103349, 103409, 103421, 103457, 103577, 103613
Offset: 1
Links
- Zak Seidov, Table of n, a(n) for n = 1..2753
Programs
-
Mathematica
Select[1000 First@ # + Last@ # & /@ Permutations[Select[Range[100, 999], PrimeQ], {2}], PrimeQ] (* Michael De Vlieger, Mar 13 2015 *)
Comments