A331407 Numbers at which the sum of the iterated exponential totient function (A331273) attains a record.
1, 2, 8, 32, 128, 864, 3456, 7776, 31104, 279936, 497664, 1990656, 4478976, 17915904, 62208000, 97200000, 559872000, 874800000, 1555200000, 6220800000, 13996800000, 55987200000
Offset: 1
Programs
-
Mathematica
ephi[n_] := Times @@ EulerPhi[FactorInteger[n][[;; , 2]]]; s[n_] := Plus @@ FixedPointList[ephi, n] - n - 1; seq = {}; smax = -1; Do[s1 = s[n]; If[s1 > smax, smax = s1; AppendTo[seq, n]], {n, 1, 5000}]; seq
Comments