OFFSET
1,1
COMMENTS
The primes must contain at least two digits.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The composite number 752 is obtained from the prime 257 by interchanging the first and last digits.
MATHEMATICA
Select[With[{idn=IntegerDigits[#]}, FromDigits[Join[{idn[[-1]]}, Most[Rest[idn]], {idn[[1]]}]]]&/@Prime[Range[5, 1500]], CompositeQ] (* Harvey P. Dale, Jan 26 2025 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Parthasarathy Nambi, Aug 06 2010
EXTENSIONS
More terms from Vincenzo Librandi, Aug 06 2010
STATUS
approved