|
Search: id:A048050
|
|
|
| A048050 |
|
Chowla's function: sum of divisors of n except 1 and n. |
|
+0 40
|
|
| 0, 0, 0, 2, 0, 5, 0, 6, 3, 7, 0, 15, 0, 9, 8, 14, 0, 20, 0, 21, 10, 13, 0, 35, 5, 15, 12, 27, 0, 41, 0, 30, 14, 19, 12, 54, 0, 21, 16, 49, 0, 53, 0, 39, 32, 25, 0, 75, 7, 42, 20, 45, 0, 65, 16, 63, 22, 31, 0, 107, 0, 33, 40, 62, 18, 77, 0, 57, 26, 73, 0, 122, 0
(list; graph; listen)
|
|
|
OFFSET
|
1,4
|
|
|
COMMENT
|
In other words, the sum of the nontrivial divisors of n [From Juri-Stepan Gerasimov (2stepan(AT)rambler.ru), Aug 10 2009.
|
|
REFERENCES
|
M. Lal and A. Forbes, A note on Chowla's function, Math. Comp., 25 (1971), 923-925.
|
|
LINKS
|
T. D. Noe, Table of n, a(n) for n=1..10000
|
|
EXAMPLE
|
Divisors of 20 are 1,2,4,5,10,20, so a(20)=2+4+5+10=21.
|
|
MAPLE
|
with(numtheory); n->sigma(n)-n-1; # n>1
|
|
MATHEMATICA
|
f[n_]:=Plus@@Divisors[n]-n-1; lst={}; Do[AppendTo[lst, f[n]], {n, 6!}]; lst [From Vladimir Orlovsky (4vladimir(AT)gmail.com), Sep 13 2009]
|
|
CROSSREFS
|
Cf. A001065, A000593, A002954, A048995.
Sequence in context: A086131 A104755 A054013 this_sequence A078153 A104035 A115333
Adjacent sequences: A048047 A048048 A048049 this_sequence A048051 A048052 A048053
|
|
KEYWORD
|
nonn,nice,easy
|
|
AUTHOR
|
N. J. A. Sloane (njas(AT)research.att.com).
|
|
|
Search completed in 0.002 seconds
|