cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A002953 Larger of unitary amicable pair.

Original entry on oeis.org

126, 1260, 22302, 40446, 49308, 64530, 73962, 168730, 223020, 286500, 242730, 429750, 365700, 548550, 618570, 827700, 739620, 827652, 932100, 1241550, 1099390, 1291050, 1292570, 1241478, 1398150, 1621500, 1669150, 1598470, 1654212
Offset: 1

Views

Author

N. J. A. Sloane; extended Nov 24 2005

Keywords

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • 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 *)