OFFSET
1,1
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..10000 (terms < 10^6 from David Consiglio, Jr.)
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
Jason Earls, Sep 13 2002
EXTENSIONS
Edited by Matthew Conroy, Oct 21 2002
More terms from David Consiglio, Jr., Oct 12 2015
Incorrect Python program deleted by Giovanni Resta, Aug 27 2018
STATUS
approved