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

A054022
Chowla function of n is divisible by the number of divisors of n.
3
1, 2, 3, 5, 7, 9, 11, 13, 15, 17, 19, 23, 27, 29, 31, 32, 35, 36, 37, 39, 41, 43, 47, 50, 51, 53, 55, 59, 61, 67, 71, 73, 75, 79, 83, 87, 89, 91, 95, 97, 98, 101, 103, 107, 109, 111, 113, 115, 119, 123, 127, 131, 135, 137, 139, 143, 149, 151, 155, 157, 159, 162, 163
OFFSET
1,2
COMMENTS
Chowla's function (A048050) = sum of divisors of n except 1 and n.
LINKS
MAPLE
with(numtheory):
[seq(`if`((sigma(i)-i-1) mod tau(i)=0, i, print( )), i=1..1000)];
MATHEMATICA
Select[Range[200], Divisible[DivisorSigma[1, #]-1-#, DivisorSigma[0, #]]&] (* Harvey P. Dale, Mar 11 2012 *)
CROSSREFS
Complement is A054023 Cf. A000005, A048050, A054014.
Sequence in context: A082664 A342008 A095737 * A185603 A046654 A280724
KEYWORD
nonn
AUTHOR
Asher Auel, Jan 19 2000
STATUS
approved