A091911 a(n) = smallest number m such that m*tau(m)/sigma(m) = n, or 0 if no such m exists.
1, 6, 28, 0, 140, 270, 8128, 672, 1638, 6200, 2970, 0, 105664, 18620, 8190, 0, 27846, 0, 117800, 0, 55860, 0, 0, 30240, 173600, 242060, 167400, 0, 237510, 0, 2305843008139952128, 0, 0, 0, 2229500, 0, 4358600, 0, 726180, 0, 2290260, 1089270
Offset: 1
Keywords
Crossrefs
The zeros occur at the complement of A090240.
Programs
-
Mathematica
f[n_] := (n*DivisorSigma[0, n]/DivisorSigma[1, n]); a = Table[0, {50}]; Do[ b = f[n]; If[ IntegerQ[b] && b < 51 && a[[b]] == 0, a[[b]] = n], {n, 1, 10 ^7}]; a
Comments