login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A272008
a(n) is the numerator of the fractional part of sigma(n)/n, where sigma(n) is the sum of the divisors of n.
2
0, 1, 1, 3, 1, 0, 1, 7, 4, 4, 1, 1, 1, 5, 3, 15, 1, 1, 1, 1, 11, 7, 1, 1, 6, 8, 13, 0, 1, 2, 1, 31, 5, 10, 13, 19, 1, 11, 17, 1, 1, 2, 1, 10, 11, 13, 1, 7, 8, 43, 7, 23, 1, 2, 17, 1, 23, 16, 1, 4, 1, 17, 41, 63, 19, 2, 1, 29, 9, 2, 1, 17, 1, 20, 49, 16, 19, 2, 1, 13, 40
OFFSET
1,4
COMMENTS
a(n) = 0 when n is a multiply-perfect number (A007691).
a(n) = 1 when n is a prime or if n belongs to A215012.
LINKS
FORMULA
a(n) = A017665(n) mod A017666(n).
EXAMPLE
The sum of divisors of 4 is 7; its abundancy is 7/4 = 1 + 3/4 so a(4) = 3.
MATHEMATICA
f[n_] := Numerator[FractionalPart[DivisorSigma[1, n]/n]]; Array[f, 81] (* Robert G. Wilson v, Nov 24 2016 *)
PROG
(PARI) a(n) = my(ab = sigma(n)/n); numerator(ab) % denominator(ab);
KEYWORD
nonn,frac
AUTHOR
Michel Marcus, May 10 2016
STATUS
approved