OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..2000
EXAMPLE
4847 is a term since the binary representations of its divisors, 1, 37, 131 and 4847, are 1, 100101, 10000011 and 1001011101111, and their binary reversals, 1, 101001, 11000001 and 1111011101001, or 1, 41, 193 and 7913 in decimal representation, are the divisors of 7913, and none of the divisors of 4847 except 1 are binary palindromes.
MATHEMATICA
binPalQ[n_] := PalindromeQ @ IntegerDigits[n, 2]; Select[Range[1, 5*10^5, 2], CompositeQ[#] && (Divisors@IntegerReverse[#, 2]) == IntegerReverse[(d = Divisors[#]), 2] && !AnyTrue[Rest[d], binPalQ] &]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Jan 23 2020
STATUS
approved