login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A032625
Primes that are concatenations of n with n + 2.
2
13, 79, 911, 2729, 3739, 4547, 4951, 5153, 5557, 6163, 6971, 7577, 105107, 109111, 115117, 117119, 121123, 151153, 159161, 181183, 187189, 195197, 201203, 211213, 217219, 225227, 247249, 271273, 277279, 285287, 289291
OFFSET
1,1
COMMENTS
Or, primes which are the concatenation of two consecutive odd numbers. - Parthasarathy Nambi, Apr 11 2005
EXAMPLE
The first term is 13 which is a prime and is the concatenation of 1 and 3 - the first two odd numbers.
MATHEMATICA
lp = Range[1, 320, 2]; lst = {}; Do[p = FromDigits[ Join[ IntegerDigits[ lp[[n]]], IntegerDigits[ lp[[n + 1]] ]]]; If[ PrimeQ[p], AppendTo[lst, p]], {n, 159}]; lst (* Robert G. Wilson v, Apr 12 2005 *)
CROSSREFS
Sequence in context: A125323 A075584 A126481 * A120782 A032652 A236952
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, May 15 1998
EXTENSIONS
Edited by N. J. A. Sloane, May 21 2008 at the suggestion of R. J. Mathar
STATUS
approved