A146567 Numbers n such that n*sigma_0(n)/(n+sigma_0(n)) = c, c an integer.
2, 12, 24, 56, 60, 132, 1260
Offset: 1
Programs
-
Maple
with(numtheory): a:=proc (n) if type(n*tau(n)/(n+tau(n)), integer) = true then n else end if end proc: seq(a(n),n=1..200000); # Emeric Deutsch, Nov 09 2008
Extensions
Corrected and extended (one term) by Emeric Deutsch, Nov 09 2008
Comments