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.

A045614 Maximal elements of pairs of "Super Unitary Amicable Numbers", sorted by their minimal elements.

Original entry on oeis.org

35, 155, 142, 224, 272, 601, 1033, 956, 1847, 2512, 3004, 2407, 2224, 3055, 3357, 4288, 5637, 4511, 7536, 5824, 6460, 7756, 8637, 7619, 8721, 7965, 14044, 14974, 16992, 13503, 14656, 14508, 14108, 18261, 22576, 17542, 16251, 20638, 18108, 29960, 27328, 24736
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])]; u[n_] := usigma[usigma[n]] - n; s = {}; Do[m = u[n]; If[m > n && u[m] == n, AppendTo[s, m]], {n, 1, 10000}]; s (* Amiram Eldar, Feb 18 2019 *)

Formula

usigma(usigma(a)) = usigma(usigma(b)) = a+b where aA034448(n) is the sum of the unitary divisors of n. This sequence gives the values of b; A045613 gives the values of a.

Extensions

Edited by Dean Hickerson, Nov 06 2006
Offset corrected by Donovan Johnson, Jul 26 2012
More terms from Amiram Eldar, Feb 18 2019