OFFSET
1,2
EXAMPLE
E.g., 429 = 3 * 11 * 13 -> 31113 is palindromic.
MATHEMATICA
Select[Range[6210], ! PrimeQ[#] && SquareFreeQ[#] && Reverse[x = Flatten[IntegerDigits[First /@ FactorInteger[#]]]] == x &] (* Jayanta Basu, Jun 24 2013 *)
Select[Range[6500], !PrimeQ[#]&&SquareFreeQ[#]&&PalindromeQ[ FromDigits[ Flatten[ IntegerDigits/@ FactorInteger[#][[All, 1]]]]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 25 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Jul 15 1998
EXTENSIONS
Definition clarified by N. J. A. Sloane, Oct 25 2020
STATUS
approved