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
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