A045613 Minimal elements of pairs of "Super Unitary Amicable Numbers", sorted by their minimal elements.
33, 105, 110, 208, 268, 455, 695, 812, 1609, 1808, 1892, 1913, 2096, 2145, 3123, 3272, 3867, 4129, 5424, 5600, 5916, 6524, 6783, 7069, 7119, 7875, 9716, 10506, 11088, 11265, 11552, 12324, 12892, 12939, 13712, 14210, 15429, 15762, 17252, 17490, 18368, 19616
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..40410 (terms below 10^10, terms 1..1000 from Donovan Johnson)
- Eric Weisstein's World of Mathematics, Super Unitary Amicable Pair.
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, n]], {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 a; A045614 gives the values of b.
Extensions
Edited by Dean Hickerson, Nov 06 2006
Offset corrected by Donovan Johnson, Jul 26 2012
More terms from Amiram Eldar, Feb 18 2019
Comments