A335316 Harmonic numbers (A001599) with a record harmonic mean of divisors.
1, 6, 28, 140, 270, 672, 1638, 2970, 8190, 27846, 30240, 167400, 237510, 332640, 695520, 1421280, 2178540, 2457000, 11981970, 14303520, 17428320, 23963940, 27027000, 46683000, 56511000, 71253000, 142990848, 163390500, 164989440, 191711520, 400851360, 407386980
Offset: 1
Keywords
Examples
The first 7 harmonic numbers are 1, 6, 28, 140, 270, 496 and 672. Their harmonic means of divisors (A001600) are 1, 2, 3, 5, 6, 5 and 8. The record values, 1, 2, 3, 5, 6 and 8 occur at 1, 6, 28, 140, 270 and 672, the first 6 terms of this sequence.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..70 (terms below 10^14)
- Amiram Eldar, Table of n, a(n), A099377(a(n)) for n = 1..70
Programs
-
Mathematica
h[n_] := n * DivisorSigma[0, n] / DivisorSigma[1, n]; hm = 0; s = {}; Do[h1 = h[n]; If[IntegerQ[h1] && h1 > hm, hm = h1; AppendTo[s, n]], {n, 1, 10^6}]; s
Comments