A371418 The largest aliquot divisor of the sum of divisors of n; a(1) = 1.
1, 1, 2, 1, 3, 6, 4, 5, 1, 9, 6, 14, 7, 12, 12, 1, 9, 13, 10, 21, 16, 18, 12, 30, 1, 21, 20, 28, 15, 36, 16, 21, 24, 27, 24, 13, 19, 30, 28, 45, 21, 48, 22, 42, 39, 36, 24, 62, 19, 31, 36, 49, 27, 60, 36, 60, 40, 45, 30, 84, 31, 48, 52, 1, 42, 72, 34, 63, 48, 72
Offset: 1
Examples
The sum of the divisors of 3 is 1 + 3 = 4. The divisors of 4 are 1, 2, 4. 2 is the largest aliquot divisor of 4. Therefore a(3) = 2.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Robert D. Carmichael, Empirical Results in the Theory of Numbers, The Mathematics Teacher, Vol. 14, No. 6 (1921), pp. 305-310; alternative link. See p. 309.
- Eric Weisstein's World of Mathematics, Aliquot Sequence.
- Eric Weisstein's World of Mathematics, Multiperfect Number.
- Wikipedia, Aliquot sequence.
Crossrefs
Programs
-
Mathematica
r[n_] := n/FactorInteger[n][[1, 1]]; a[n_] := r[DivisorSigma[1, n]]; Array[a, 100]
-
PARI
a(n) = {my(s = sigma(n)); if(s == 1, 1, s/factor(s)[1, 1]);}
Comments