login

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”).

A354723
Terms of A354722 whose number of divisors sets a new record.
1
25, 39, 575, 2875, 93025, 243125, 568135, 52810719, 3752907575, 15623751875
OFFSET
1,1
COMMENTS
The corresponding numbers of divisors are 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, ...
a(11) > 4*10^10, if it exists.
MATHEMATICA
bw[n_] := DigitCount[n, 2, 1]; seq = {}; dm = 0; Do[If[CompositeQ[n] && (d = DivisorSigma[0, n]) > dm && UnsameQ @@ (bw /@ Divisors[n]), dm = d; AppendTo[seq, n]], {n, 1, 10^5, 2}]; seq
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Amiram Eldar, Jun 04 2022
STATUS
approved