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

A205099
Sum of proper divisors (A001065) of deficient numbers (A005100).
3
0, 1, 1, 3, 1, 1, 7, 4, 8, 1, 1, 10, 9, 15, 1, 1, 11, 14, 1, 6, 16, 13, 1, 1, 31, 15, 20, 13, 1, 22, 17, 1, 1, 40, 33, 26, 1, 8, 43, 21, 46, 1, 17, 23, 32, 1, 1, 34, 41, 63, 19, 1, 58, 27, 1, 1, 40, 49, 64, 19, 1, 40, 44, 1, 23, 46, 33, 1, 21, 76, 35, 50
OFFSET
1,4
LINKS
Eric Weisstein's World of Mathematics, Restricted Divisor Function
Eric Weisstein's World of Mathematics, Deficient Number
FORMULA
a(n) = 1 for A005100(n) = prime.
a(n) = A001065(A005100(n)) = A204823(n) - A005100(n).
MATHEMATICA
a205099[n_Integer] :=
DivisorSigma[1, #] - # & /@
Select[Range[n], DivisorSigma[1, #] < 2*# &]; a205099[94] (* Michael De Vlieger, Nov 26 2014, after Jean-François Alcover at A001065 and Stefan Steinerberger at A005100 *)
PROG
(Magma) [SumOfDivisors(n)- n: n in [1..1000] | SumOfDivisors(n) lt 2*n]
CROSSREFS
Cf. A205098 (sum of proper divisors of abundant numbers), A204823 (sum of divisors of deficient numbers).
Sequence in context: A158198 A158793 A112996 * A136621 A108625 A112857
KEYWORD
nonn
AUTHOR
Jaroslav Krizek, Jan 22 2012
EXTENSIONS
Spurious term removed by Jaroslav Krizek, Nov 26 2014
STATUS
approved