OFFSET
0,1
LINKS
Chris Caldwell, The First 1,008 Twin Primes.
EXAMPLE
The twin primes 41 and 43 are concatenated in reverse order to give 4341, which is the sixth term in the sequence.
MATHEMATICA
f[{a_, b_}]:=FromDigits[Join[IntegerDigits[b], IntegerDigits[a]]]; f/@Select[Partition[Prime[Range[200]], 2, 1], #[[2]]-#[[1]]==2&] (* Harvey P. Dale, Jan 01 2011 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Parthasarathy Nambi, May 20 2005
EXTENSIONS
More terms from Harvey P. Dale, Jan 01 2011
STATUS
approved