|
|
A075407
|
|
Non-palindromic numbers such that the largest proper divisor is a palindrome having at least two digits and no other divisor is a palindrome with at least two digits.
|
|
4
|
|
|
302, 322, 342, 362, 382, 423, 453, 483, 504, 513, 543, 544, 573, 584, 655, 706, 746, 755, 766, 805, 905, 908, 917, 948, 955, 988, 1029, 1030, 1050, 1057, 1059, 1070, 1090, 1119, 1127, 1130, 1149, 1150, 1170, 1190, 1267, 1312, 1313, 1337, 1352, 1434
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
LINKS
|
|
|
EXAMPLE
|
322 is here since the divisors of 322 are [1, 2, 7, 14, 23, 46, *161*, 322].
|
|
MATHEMATICA
|
palQ[n_] := Block[{d = IntegerDigits[n]}, d == Reverse@d]; ok[n_] := Block[{d = Divisors[n]}, Length[d] > 1 && d[[-2]] > 9 && palQ[d[[-2]]] && Length[ Select[d, # > 9 && palQ[#] &, 2]] == 1]; Select[ Range[2000], ok] (* Giovanni Resta, Aug 27 2018 *)
|
|
CROSSREFS
|
|
|
KEYWORD
|
base,nonn
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|