OFFSET
1,1
COMMENTS
Probably this sequence is finite, with 23 terms of which the last is 1681.
EXAMPLE
n=1641: FixedPointList={1681,82,42,24},end=24.
MATHEMATICA
f[x_] := EulerPhi[DivisorSigma[1, x]-EulerPhi[x]] Do[s=NestList[f, n, 100]; s1=Part[s, 99]; s2=Part[s, 100]; If[Equal[s1, s2]&&Equal[s1, 4], Print[{n, s1}]], {n, 1, 1000000}]
fp24Q[n_]:=FixedPoint[EulerPhi[DivisorSigma[1, #]-EulerPhi[#]]&, n, 20]==24; Select[ Range[1700], fp24Q] (* Harvey P. Dale, Mar 12 2023 *)
CROSSREFS
KEYWORD
nonn,fini,full
AUTHOR
Labos Elemer, Oct 31 2002
STATUS
approved