|
Search: id:A076617
|
|
|
| A076617 |
|
Numbers n such that sum of the divisors d of n divides the sum of the non-divisors d' of n, where 1 <= d, d' <= n. |
|
+0 1
|
|
| 1, 2, 15, 20, 24, 95, 104, 207, 224, 287, 464, 1023, 1199, 1952, 4095, 4607, 8036, 12095, 15872, 16895, 19359, 22932, 23519, 28799, 45440, 45695, 54144, 77375
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
EXAMPLE
|
The sum of the divisors of 15 is sigma(15) = 24; the sum of the non-divisors of 15 that are between 1 and 15 is 2 + 4 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 = 96. Since 24 divides 96, 15 is a term of the sequence.
|
|
MATHEMATICA
|
a = {}; Do[ s = DivisorSigma[1, i]; n = (i (i + 1) / 2) - s; If[Mod[n, s] == 0, a = Append[a, i]], {i, 1, 10^5}]; a
|
|
CROSSREFS
|
Cf. A024816.
Sequence in context: A042685 A031022 A076646 this_sequence A091791 A143660 A075722
Adjacent sequences: A076614 A076615 A076616 this_sequence A076618 A076619 A076620
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Joseph L. Pe (joseph_l_pe(AT)hotmail.com), Oct 22 2002
|
|
|
Search completed in 0.002 seconds
|