OFFSET
1,2
COMMENTS
1
LINKS
Imre Kátai and M. Wijsmuller, On the iterates of the sum of unitary divisors, Acta Mathematica Hungarica, Vol 79, No. 1-2 (1998), pp. 149-167.
MATHEMATICA
usigma[n_] := Block[{d = Divisors[n]}, Plus @@ Select[d, GCD[ #, n/# ] == 1 &]]; a = {}; k=1; rmax = 0; While[Length[a]<10, s = usigma[ k]; s1=usigma[s]; s2 = usigma[ s1]; r = s2/s1; If[r > rmax, a = AppendTo[a, k]; rmax = r]; k++]; a
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Amiram Eldar, Dec 29 2017
EXTENSIONS
a(10) and a(11) from Robert G. Wilson v, Jan 12 2018
STATUS
approved