OFFSET
0,1
LINKS
Chris Caldwell, The First 1,008 Twin Primes.
EXAMPLE
3557 is obtained by concatenating the consecutive pair of twin primes (3,5) and (5,7).
11131719 is obtained by concatenating the consecutive pair of twin primes (11,13) and (17,19).
MATHEMATICA
With[{ll=Select[Partition[Prime[Range[200]], 2, 1], Last[#]-First[#] == 2&]}, Table[FromDigits[Flatten[IntegerDigits/@Take[ll, {2n-1, 2n}]]], {n, 20}]] (* Harvey P. Dale, Oct 25 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Apr 01 2005
EXTENSIONS
More terms from Harvey P. Dale, Oct 25 2011
STATUS
approved