OFFSET
1,2
COMMENTS
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
EXAMPLE
The pairwise products of the divisors of 22 (2,11,22,44,242) are all palindromic, so 22 is in the sequence.
MATHEMATICA
fQ[n_]:=AllTrue[Union[Times@@@Subsets[Divisors[n], {2}]], PalindromeQ]; Select[Range[20000], fQ]
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Ivan N. Ianakiev, Jan 02 2021
STATUS
approved