OFFSET
1,1
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..7896 (from Pedersen's website)
Peter Hagis, Jr., Unitary amicable numbers, Math. Comp., 25 (1971), 915-918.
J. M. Pedersen, Known Unitary Amicable Pairs
J. O. M. Pedersen, Tables of Aliquot Cycles [Broken link]
J. O. M. Pedersen, Tables of Aliquot Cycles [Via Internet Archive Wayback-Machine]
J. O. M. Pedersen, Tables of Aliquot Cycles [Cached copy, pdf file only]
Ivars Peterson, Amicable Pairs, Divisors, and a New Record, January 30 2004.
Eric Weisstein's World of Mathematics, Unitary Amicable Pair
MATHEMATICA
uDivisors[n_] := Select[Divisors[n], # < n && GCD[#, n/#] == 1 & ]; mate[n_] := If[m = Total[uDivisors[n]]; n == Total[uDivisors[m]], m, 0]; Reap[Do[If[n < (m = mate[n]), Print[m]; Sow[m]], {n, 2, 2000000}]][[2, 1]] (* Jean-François Alcover, Jun 12 2012 *)
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
N. J. A. Sloane; extended Nov 24 2005
STATUS
approved