login

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”).

A181659
Numbers at which the sum of the iterated totient function (A092693) attains a record.
7
1, 2, 3, 5, 7, 11, 13, 17, 23, 29, 37, 41, 47, 53, 59, 71, 73, 79, 83, 89, 101, 107, 131, 137, 167, 179, 227, 233, 257, 289, 317, 347, 359, 389, 443, 449, 461, 467, 503, 557, 563, 569, 587, 641, 719, 809, 839, 857, 929, 977, 983, 1013, 1019, 1097, 1187, 1193, 1283
OFFSET
1,2
COMMENTS
Most of these numbers are prime. The first four composites are 289, 2329, 4369, and 4913.
MATHEMATICA
kMax=2*3*5*7*11*13; t=Table[0, {kMax}]; Do[e=EulerPhi[k]; t[[k]]=e+t[[e]], {k, 2, kMax}]; mx=-1; Reap[Do[If[t[[k]]>mx, mx=t[[k]]; Sow[k]], {k, kMax}]][[2, 1]]
CROSSREFS
Cf. A126106 (record values)
Sequence in context: A368732 A192503 A040067 * A040087 A040065 A051647
KEYWORD
nonn
AUTHOR
T. D. Noe, Nov 04 2010
STATUS
approved