A103206 Concatenations of pairs of primes that differ by 6.
511, 713, 1117, 1319, 1723, 2329, 3137, 3743, 4147, 4753, 5359, 6167, 6773, 7379, 8389, 97103, 101107, 103109, 107113, 131137, 151157, 157163, 167173, 173179, 191197, 193199, 223229
Offset: 0
Links
- Harvey P. Dale, Table of n, a(n) for n = 0..1000
- Eric Weisstein's World of Mathematics, Sexy Primes.
- T. Trotter, "Sexy Primes."
Programs
-
Mathematica
FromDigits[Flatten[IntegerDigits/@{#,#+6}]]&/@Select[Prime[Range[50]], PrimeQ[#+6]&] (* Harvey P. Dale, Jun 24 2015 *)
Comments