A158299 Numerators of averages of squares of the divisors of n.
1, 5, 5, 7, 13, 25, 25, 85, 91, 65, 61, 35, 85, 125, 65, 341, 145, 455, 181, 91, 125, 305, 265, 425, 217, 425, 205, 175, 421, 325, 481, 455, 305, 725, 325, 637, 685, 905, 425, 1105, 841, 625, 925, 427, 1183, 1325, 1105, 341, 817, 1085, 725, 595, 1405, 1025
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
Programs
-
Maple
f:= proc(n) local D; D:= map(t -> t^2,numtheory:-divisors(n)); numer(convert(D,`+`)/nops(D)); end proc: map(f, [$1..100]); # Robert Israel, Jul 15 2019
-
Mathematica
Numerator[Mean/@(Divisors[Range[60]]^2)] (* Harvey P. Dale, Oct 13 2011 *) Array[Numerator[DivisorSigma[2, #]/DivisorSigma[0, #]] &, 100]; (* Amiram Eldar, Jul 15 2019 *)
Extensions
Corrected and extended by Harvey P. Dale, Oct 13 2011
Comments