|
|
A046448
|
|
Squarefree nonprimes with property that the concatenation of the prime factors is a palindrome.
|
|
3
|
|
|
1, 39, 69, 119, 129, 159, 219, 249, 259, 329, 339, 403, 429, 469, 669, 679, 795, 1207, 1309, 1329, 1533, 1547, 1589, 1703, 2319, 2321, 2359, 2649, 2701, 3039, 3421, 3503, 3629, 3633, 3639, 3729, 3899, 4303, 4607, 4839, 5289, 5295, 5565, 5603, 5739, 6209
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
LINKS
|
|
|
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
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|