A348867 Numbers whose numerator and denominator of the harmonic mean of their divisors are both 3-smooth numbers.
1, 2, 3, 6, 28, 40, 84, 120, 135, 224, 270, 672, 819, 1638, 3780, 10880, 13392, 30240, 32640, 32760, 167400, 950976, 1303533, 2178540, 2607066, 3138345, 4713984, 6276690, 8910720, 14705145, 17428320, 29410290, 45532800, 52141320, 179734464, 301953024, 311323824
Offset: 1
Keywords
Examples
2 is a term since the harmonic mean of its divisors is 4/3 = 2^2/3. 3 is a term since the harmonic mean of its divisors is 3/2. 40 is a term since the harmonic mean of its divisors is 32/9 = 2^5/3^2.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..47
Crossrefs
Programs
-
Mathematica
smQ[n_] := n == 2^IntegerExponent[n, 2] * 3^IntegerExponent[n, 3]; h[n_] := DivisorSigma[0, n]/DivisorSigma[-1, n]; q[n_] := smQ[Numerator[(hn = h[n])]] && smQ[Denominator[hn]]; Select[Range[10^5], q]
Comments