Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 Dec 15 2016 08:18:37
%S 1,2,3,4,6,13,15,16,20,21,23,24,25,26,28,30,33,36,42,44,46,50,66,157,
%T 169,203,215,237,241,245,255,256,261,272,275,287,303,305,314,316,320,
%U 325,338,340,344,347,367,369,375,384,385,392,393,404,406,408,429,430
%N Initial values for f(x)=sigma(phi(x))=A062402(x) such that iteration of f ends in cycle of length=1.
%H Ivan Neretin, <a href="/A096988/b096988.txt">Table of n, a(n) for n = 1..10000</a>
%t a = {}; Do[s = {n}; While[! MemberQ[s, k = DivisorSigma[1, EulerPhi[s[[-1]]]]], AppendTo[s, k]]; If[s[[-1]] == k, AppendTo[a, n]], {n, 430}]; a (* _Ivan Neretin_, Dec 15 2016 *)
%Y Cf. A062402, A095952, A018784.
%K nonn
%O 1,2
%A _Labos Elemer_, Jul 19 2004