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”).

A054014
Chowla function of n read modulo (the number of divisors of n).
5
0, 0, 0, 2, 0, 1, 0, 2, 0, 3, 0, 3, 0, 1, 0, 4, 0, 2, 0, 3, 2, 1, 0, 3, 2, 3, 0, 3, 0, 1, 0, 0, 2, 3, 0, 0, 0, 1, 0, 1, 0, 5, 0, 3, 2, 1, 0, 5, 1, 0, 0, 3, 0, 1, 0, 7, 2, 3, 0, 11, 0, 1, 4, 6, 2, 5, 0, 3, 2, 1, 0, 2, 0, 3, 0, 3, 2, 1, 0, 5, 4, 3, 0, 7, 2, 1, 0, 3, 0, 11, 0, 3, 2, 1, 0, 11, 0, 0, 2, 8, 0, 1, 0
OFFSET
1,4
COMMENTS
Chowla's function (A048050) = sum of divisors of n except 1 and n.
LINKS
FORMULA
a(n) = A048050(n) mod A000005(n).
MAPLE
with(numtheory): [seq((sigma(i)-i-1) mod tau(i), i=1..120)];
MATHEMATICA
Array[Mod[DivisorSigma[1, #] - # - 1, DivisorSigma[0, #]] &, 103] (* Michael De Vlieger, Oct 30 2017 *)
PROG
(PARI) A054014(n) = ((sigma(n)-n-1) % numdiv(n)); \\ Antti Karttunen, Oct 30 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Asher Auel, Jan 17 2000
STATUS
approved