Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #14 Jan 09 2021 16:28:37
%S 1,2,3,4,5,7,11,22,33,101,121,131,151,181,191,202,303,313,353,373,383,
%T 727,757,787,797,919,929,1111,2222,10201,10301,10501,10601,11311,
%U 11411,12221,12421,12721,12821,13331,13831,13931,14341,14741,15451,15551,16061,16361,16561,16661
%N Numbers whose pairwise products of divisors are all palindromic.
%C Supersequence of A002385 (palindromic primes).
%C A subsequence of A062687 (numbers all of whose divisors are palindromic).
%H Chai Wah Wu, <a href="/A340252/b340252.txt">Table of n, a(n) for n = 1..10000</a>
%e The pairwise products of the divisors of 22 (2,11,22,44,242) are all palindromic, so 22 is in the sequence.
%t fQ[n_]:=AllTrue[Union[Times@@@Subsets[Divisors[n],{2}]],PalindromeQ]; Select[Range[20000],fQ]
%Y Cf. A002385, A062687.
%K base,easy,nonn
%O 1,2
%A _Ivan N. Ianakiev_, Jan 02 2021