A180164 The sum of the two numbers in an amicable pair, A002025(n) + A002046(n).
504, 2394, 5544, 10584, 12600, 21600, 26880, 35712, 139104, 133920, 138240, 157248, 168480, 224640, 262080, 245520, 294840, 311040, 348192, 357120, 388800, 399168, 645624, 698544, 749952, 756000, 892800, 955206, 1017792, 1048320
Offset: 1
Keywords
Examples
a(9) = A002025(9) + A002046(9) = 63020 + 76084 = 139104.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
- Peter Hagis, Lower bounds for relatively prime amicable numbers of opposite parity, Math. Comp. 24 (1970), 963-968.
- Peter Hagis, Relatively Prime Amicable Numbers of Opposite Parity, Mathematics Magazine, Vol. 43, No. 1 (Jan., 1970), pp. 14-20.
- Eric W. Weisstein's World of Mathematics, Pair Sum.
Programs
-
Mathematica
s[n_] := DivisorSigma[1,n]-n; smallAmicableQ[n_] := Module[{b=s[n]}, n
Comments