|
|
A001599
|
|
Harmonic or Ore numbers: numbers n such that the harmonic mean of the divisors of n is an integer.
(Formerly M4185 N1743)
|
|
113
|
|
|
1, 6, 28, 140, 270, 496, 672, 1638, 2970, 6200, 8128, 8190, 18600, 18620, 27846, 30240, 32760, 55860, 105664, 117800, 167400, 173600, 237510, 242060, 332640, 360360, 539400, 695520, 726180, 753480, 950976, 1089270, 1421280, 1539720
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
COMMENTS
|
Note that the harmonic mean of the divisors of n = n*tau(n)/sigma(n).
Equivalently, n*tau(n)/sigma(n) is an integer, where tau(n) (A000005) is the number of divisors of n and sigma(n) is the sum of the divisors of n (A000203).
Equivalently, the average of the divisors of n divides n.
Note that the average of the divisors of n is not necessarily an integer, so the above wording should be clarified as follows: n divided by the average is an integer. See A007340. - Thomas Ordowski, Oct 26 2014
Ore showed that every perfect number (A000396) is harmonic. The converse does not hold: 140 is harmonic but not perfect. Ore conjectured that 1 is the only odd harmonic number.
Other examples of power mean numbers n such that some power mean of the divisors of n is an integer are the RMS numbers A140480. - Ctibor O. Zizka, Sep 20 2008
Conjecture: Every harmonic number is practical (A005153). I've verified this refinement of Ore's conjecture for all terms less than 10^14. - Jaycob Coleman, Oct 12 2013
Conjecture: Except for n = 1, a(n) is a Zumkeller number (A083207). I've verified this for all n in [2,50]. - Ivan N. Ianakiev, Nov 22 2017
Kanold (1957) proved that the asymptotic density of the harmonic numbers is 0. - Amiram Eldar, Jun 01 2020
Zachariou and Zachariou (1972) called these numbers "Ore numbers", after the Norwegian mathematician Øystein Ore (1899 - 1968) who was the first to study them. Ore (1948) and Garcia (1954) referred to them as "numbers with integral harmonic mean of divisors". The term "harmonic numbers" was used by Pomerance (1973). They are sometimes called "harmonic divisor numbers", or "Ore's harmonic numbers", to differ them from the partial sums of the harmonic series. - Amiram Eldar, Dec 04 2020
|
|
REFERENCES
|
G. L. Cohen and Deng Moujie, On a generalization of Ore's harmonic numbers, Nieuw Arch. Wisk. (4), 16 (1998) 161-172.
Richard K. Guy, Unsolved Problems in Number Theory, 3rd edition, Springer, 2004, Section B2, pp. 74-75.
W. H. Mills, On a conjecture of Ore, Proc. Number Theory Conf., Boulder CO, 1972, 142-146.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
|
|
LINKS
|
Marco Abrate, Stefano Barbero, Umberto Cerruti, and Nadir Murru, The Biharmonic mean, arXiv:1601.03081 [math.NT], 2016.
Graeme L. Cohen and Ronald M. Sorli, Harmonic seeds, Fibonacci Quart., Vol. 36, No. 5 (1998), pp. 386-390; errata, 39 (2001) 4.
Carl Pomerance, On a Problem of Ore: Harmonic Numbers, unpublished manuscript, 1973; abstract *709-A5, Notices of the American Mathematical Society, Vol. 20, 1973, page A-648, entire volume.
|
|
FORMULA
|
|
|
EXAMPLE
|
n=140 has sigma_0(140)=12 divisors with sigma_1(140)=336. Average divisor is 336/12=28, an integer, and divides n: n=5*28.
n=496 has sigma_0(496)=10, sigma_1(496)=992: average divisor 99.2 is not an integer, but n/(sigma_1/sigma_0)=496/99.2=5 is an integer.
|
|
MAPLE
|
q:= (p, k) -> p^k*(p-1)*(k+1)/(p^(k+1)-1):
filter:= proc(n) local t; mul(q(op(t)), t=ifactors(n)[2])::integer end proc:
|
|
MATHEMATICA
|
Do[ If[ IntegerQ[ n*DivisorSigma[0, n]/ DivisorSigma[1, n]], Print[n]], {n, 1, 1550000}]
Select[Range[1600000], IntegerQ[HarmonicMean[Divisors[#]]]&] (* Harvey P. Dale, Oct 20 2012 *)
|
|
PROG
|
(PARI) a(n)=if(n<0, 0, n=a(n-1); until(0==(sigma(n, 0)*n)%sigma(n, 1), n++); n) /* Michael Somos, Feb 06 2004 */
(Haskell)
import Data-Ratio (denominator)
import Data.List (genericLength)
a001599 n = a001599_list !! (n-1)
a001599_list = filter ((== 1) . denominator . hm) [1..] where
hm x = genericLength ds * recip (sum $ map (recip . fromIntegral) ds)
where ds = a027750_row x
(GAP) Concatenation([1], Filtered([2, 4..2000000], n->IsInt(n*Tau(n)/Sigma(n)))); # Muniru A Asiru, Nov 26 2018
(Python)
from sympy import divisor_sigma as sigma
def ok(n): return (n*sigma(n, 0))%sigma(n, 1) == 0
(Python)
from itertools import count, islice
from functools import reduce
from math import prod
from sympy import factorint
def A001599_gen(startvalue=1): # generator of terms >= startvalue
for n in count(max(startvalue, 1)):
f = factorint(n)
s = prod((p**(e+1)-1)//(p-1) for p, e in f.items())
if not reduce(lambda x, y:x*y%s, (e+1 for e in f.values()), 1)*n%s:
yield n
|
|
CROSSREFS
|
See A003601 for analogs referring to arithmetic mean and A000290 for geometric mean of divisors.
sigma_0(n) (or tau(n)) is the number of divisors of n (A000005).
sigma_1(n) (or sigma(n)) is the sum of the divisors of n (A000203).
|
|
KEYWORD
|
nonn,nice
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|