OFFSET
1,2
COMMENTS
EXAMPLE
35 is in the sequence since usigma(35) = 48, and (zeta(2)/zeta(3)) * 35 = 47.895... has a round value of 48.
MATHEMATICA
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); meanAb = Zeta[2]/Zeta[3]; Select[Range[10^6], usigma[#] == Round[meanAb*#] &]
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, May 10 2019
STATUS
approved