A329420 Numbers all of whose divisors are binary palindromes (A329419) with a record number of divisors.
1, 3, 9, 15, 45, 189, 765, 48573, 196605, 3183328701, 12884901885
Offset: 1
Programs
-
Mathematica
binPalQ[n_] := PalindromeQ @ IntegerDigits[n, 2]; binAllDivPalQ[n_] := binPalQ[n] && AllTrue[Most @ Divisors[n], binPalQ]; divNumMax = 0; seq={}; Do[If[binAllDivPalQ[n] && (divNum = DivisorSigma[0, n]) > divNumMax, divNumMax = divNum; AppendTo[seq, n]],{n, 1, 2*10^5}]; seq
Comments