A286322 Totient highly abundant numbers that are composite.
4, 9, 221, 289, 697, 1819, 2329, 4369, 4913, 6439, 18769, 21331, 35209, 66049, 128881, 184783, 197143, 258121, 281929, 516961, 739903, 971203, 1762249, 1942663, 2070721, 2898703, 2952673, 3820819, 4142881, 5550943, 5869681, 8288641, 16230481, 16773619
Offset: 1
Keywords
Links
- Amiram Eldar and Giovanni Resta, Table of n, a(n) for n = 1..93 (terms < 5*10^10, first 65 terms from Amiram Eldar)
Programs
-
Mathematica
sumTot[n_] := Plus @@ FixedPointList[ EulerPhi@ # &, n] - 1; a={};smax=0;For[k=1,k<300000,k++;s=sumTot[k];If[s>smax,smax=s;If[!PrimeQ[k],a=AppendTo[a,k]]]];a
Comments