OFFSET
0,3
FORMULA
a(n) = A095955(2^n). - Charles R Greathouse IV, Nov 27 2013
EXAMPLE
n=18: start = 262144 and the corresponding 11-cycle is 262144, 524286, [368640, 381024, 326592, 550368, 435456, 580608, 851840, 552960, 524160, 442368, 432000], 368640, ...
MATHEMATICA
g[n_] := EulerPhi[ DivisorSigma[1, n]]; f[n_] := Block[{lst = NestWhileList[g, n, UnsameQ, All]}, -Subtract @@ Flatten[ Position[lst, lst[[ -1]]]]]; Table[ f[2^n], {n, 0, 20}]
PROG
(PARI) f(x)=eulerphi(sigma(x))
a(n)=my(t=f(2^n), h=f(t), s); while(t!=h, t=f(t); h=f(f(h))); t=f(t); h=f(t); s=1; while(t!=h, s++; t=f(t); h=f(f(h))); s \\ Charles R Greathouse IV, Nov 27 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jul 16 2004
EXTENSIONS
Edited, corrected and extended by Robert G. Wilson v, Jul 17 2004
STATUS
approved