OFFSET
1,1
COMMENTS
Subsequence of A001599. Harmonic mean of divisors = n * tau(n) / sigma(n).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..103 (calculated from the b-file at A001599)
EXAMPLE
140*tau(140)/sigma(140) = 5, a prime, so 140 is a term of the sequence.
MATHEMATICA
Select[Range[10^5], PrimeQ[ # * DivisorSigma[0, # ] / DivisorSigma[1, # ]] &]
Select[Range[1600000], PrimeQ[HarmonicMean[Divisors[#]]]&] (* Harvey P. Dale, Jul 24 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Sep 20 2002
EXTENSIONS
a(8)-a(26) from Donovan Johnson, Jun 10 2010
More terms from Amiram Eldar, Sep 30 2019
STATUS
approved