login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A250095 Positive integers k such that the numerator of the harmonic mean of the proper divisors of k is equal to k. 3
4, 27, 28, 54, 56, 64, 68, 91, 99, 100, 133, 138, 148, 154, 165, 188, 217, 222, 247, 259, 268, 276, 279, 290, 301, 308, 369, 375, 388, 403, 414, 427, 428, 430, 469, 474, 481, 508, 511, 540, 544, 548, 549, 553, 559, 589, 609, 621, 627, 628, 639, 642, 665, 668 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..2000 from Colin Barker)
EXAMPLE
27 is a term because the proper divisors of 27 are [1,3,9] and 3 / (1/1 + 1/3 + 1/9) = 27/13.
MATHEMATICA
Select[Range[668], CompositeQ[#] && Numerator[(DivisorSigma[0, #] - 1) * #/(DivisorSigma[1, #] - 1)] == # &] (* Amiram Eldar, Mar 02 2020 *)
PROG
(PARI)
harmonicmean(v) = #v / sum(k=1, #v, 1/v[k])
properdivisors(n) = d=divisors(n); vector(#d-1, k, d[k])
s=[]; for(n=2, 1000, if(numerator(harmonicmean(properdivisors(n)))==n, s=concat(s, n))); s
CROSSREFS
Sequence in context: A176031 A093845 A351747 * A085702 A068349 A129204
KEYWORD
nonn
AUTHOR
Colin Barker, Nov 12 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)