A317476 Harmonic numbers k such that the harmonic mean of the divisors of k is also a harmonic number.
1, 270, 164989440, 2701389600, 71271827200, 183694492800, 7322605472000, 28103080287744
Offset: 1
Examples
270 is in the sequence since the harmonic mean of its divisors is 6, which is also a harmonic number.
Programs
-
Mathematica
hQ[n_] := IntegerQ[n*DivisorSigma[0, n]/DivisorSigma[1, n]]; hhQ[n_] := Module[{h = n * DivisorSigma[0, n]/DivisorSigma[1, n]}, IntegerQ[h] && hQ[h]]; Do[If[hhQ[n], Print[n]], {n, 1, 10^14}]
Comments