A381743 The number of divisors d of n such that d*n is abundant.
0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 6, 0, 1, 0, 0, 0, 6, 0, 6, 0, 0, 0, 8, 0, 0, 0, 5, 0, 8, 0, 0, 0, 0, 0, 9, 0, 0, 0, 8, 0, 8, 0, 4, 0, 0, 0, 10, 0, 3, 0, 4, 0, 8, 0, 8, 0, 0, 0, 12, 0, 0, 0, 0, 0, 8, 0, 2, 0, 8, 0, 12, 0, 0, 0, 2, 0, 8, 0, 10, 0, 0, 0, 12, 0, 0
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
a[n_] := DivisorSum[n, 1 &, DivisorSigma[-1, #*n] > 2 &]; Array[a, 100]
-
PARI
a(n) = sumdiv(n, d, sigma(d*n, -1) > 2);
Comments