OFFSET
1,2
COMMENTS
A007340 = numbers k such that the arithmetic mean of divisors of k is integer and equal to one of the divisors of this numbers.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..847 (calculated from the b-file at A007340)
EXAMPLE
a(3) = 28, because 28 is arithmetic mean of divisors of A007340(3)=140 and also is divisor of 140.
PROG
[SumOfDivisors(n) / NumberOfDivisors(n): n in[A007340(n)] ]
(PARI) lista(kmax) = {my(f, s, d); for(k = 1, kmax, f = factor(k); s = sigma(f); d = numdiv(f); if(!(s % d) && denominator(d / sigma(f, -1)) == 1, print1(s/d, ", "))); } \\ Amiram Eldar, Apr 15 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Mar 07 2009, Mar 09 2009
EXTENSIONS
Corrected and extended by Jaroslav Krizek, Mar 29 2015
STATUS
approved