A054015 a(n) is Chowla function of n read modulo (number of proper divisors of n), a(1) = 0 by convention.
0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 2, 0, 6, 0, 0, 2, 1, 0, 6, 0, 0, 1, 0, 0, 4, 0, 4, 2, 1, 0, 3, 1, 2, 2, 0, 0, 2, 1, 0, 1, 1, 0, 8, 0, 0, 0, 2, 0, 0, 0, 2, 2, 3, 0, 1, 0, 0, 3, 3, 0, 5, 0, 6, 3, 1, 0, 7, 1, 0, 2, 0, 0, 0, 2, 0, 1, 1, 0, 1, 0, 2, 1, 4, 0, 1, 0, 0, 2
Offset: 1
Keywords
Links
Programs
-
Maple
with(numtheory): [seq((sigma(i)-i-1) mod (tau(i)-1),i=2..120);#i>1
-
PARI
A054015(n) = if(1==n,0,((sigma(n)-n-1) % (numdiv(n)-1))); \\ Antti Karttunen, Oct 20 2017
Extensions
Description clarified by Antti Karttunen, Oct 20 2017
Comments