OFFSET
1,2
COMMENTS
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) is the smallest number such that Nest[EulerPhi, A002110, a(n)]=1
EXAMPLE
n=7, A002110(7)=510510; the corresponding iteration chain is {510510, 92160, 24576, 8192, 4096, 2048, 1024, 512, 256, 128, 64, 32, 16, 8, 4, 2, 1}. Its length is 17, so the required number of iterations is a(7)=16.
MATHEMATICA
Array[-2 + Length@ FixedPointList[EulerPhi, Product[Prime@ i, {i, #}]] &, 58] (* Michael De Vlieger, Nov 20 2017 *)
PROG
(PARI) a(n)=my(t=prod(i=1, n, prime(i)-1), s=1); while(t>1, t=eulerphi(t); s++); s \\ Charles R Greathouse IV, Jan 06 2016
(PARI) A003434(n)=my(s); while(n>1, n=eulerphi(n); s++); s
first(n)=my(s=1); vector(n, k, s+=A003434(prime(k))-1) \\ Charles R Greathouse IV, Jan 06 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Feb 28 2000
STATUS
approved