A074247 Numbers n such that harmonic mean of the divisors of n is a prime.
6, 28, 140, 496, 2970, 8128, 27846, 105664, 117800, 237510, 539400, 1421280, 1539720, 2290260, 4358600, 8872200, 33550336, 50401728, 90409410, 233103780, 287425800, 318177800, 423184320, 559903400, 825120800, 1632825792, 2705020500, 3209343200, 3328809120, 4720896180
Offset: 1
Keywords
Examples
140*tau(140)/sigma(140) = 5, a prime, so 140 is a term of the sequence.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..103 (calculated from the b-file at A001599)
Crossrefs
Cf. A001599.
Programs
-
Mathematica
Select[Range[10^5], PrimeQ[ # * DivisorSigma[0, # ] / DivisorSigma[1, # ]] &] Select[Range[1600000],PrimeQ[HarmonicMean[Divisors[#]]]&] (* Harvey P. Dale, Jul 24 2019 *)
Extensions
a(8)-a(26) from Donovan Johnson, Jun 10 2010
More terms from Amiram Eldar, Sep 30 2019
Comments