OFFSET
1,2
COMMENTS
Subsequence of A163410, and differs from it from n = 65.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
15 is in the sequence since the binary representations of its divisors, 1, 3, 5, and 15, are all palindromes: 1, 11, 101, and 1111.
MATHEMATICA
binPalQ[n_] := PalindromeQ @ IntegerDigits[n, 2]; seqQ[n_] := binPalQ[n] && AllTrue[Most @ Divisors[n], binPalQ]; Select[Range[10^4], seqQ]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Nov 29 2019
STATUS
approved