login
A239802
Numbers k such that if x = k - phi(k) then k = sigma(x) - x, where phi(k) is the Euler totient function.
1
36, 42, 186, 222, 270, 390, 396, 440, 656, 2220, 4140, 5622, 9400, 20214, 94816, 282540, 17578122, 85046840, 125948800, 145805120, 434435360, 11152607958, 11160256626
OFFSET
1,1
COMMENTS
Fixed points of the transform k -> sigma(k-phi(k)) - k + phi(k).
a(24) > 5*10^10, if it exists. - Amiram Eldar, Nov 21 2024
EXAMPLE
phi(222) = 72 and 222 - 72 = 150; sigma(150) = 372 and 372 - 150 = 222.
MAPLE
with(numtheory); P:=proc(q) local n; k:=0;
for n from 1 to q do if 2*n=sigma(n-phi(n))+phi(n) then print(n);
fi; od; end: P(10^9);
MATHEMATICA
q[k_] := Module[{e = EulerPhi[k]}, DivisorSigma[1, k - e] - k + e == k]; Select[Range[300000], q] (* Amiram Eldar, Nov 21 2024 *)
PROG
(PARI) isok(n) = (x = n - eulerphi(n)) && (n == sigma(x) - x); \\ Michel Marcus, Mar 28 2014
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Mar 27 2014
EXTENSIONS
a(17)-a(21) from Michel Marcus, Mar 28 2014
a(22)-a(23) from Amiram Eldar, Nov 21 2024
STATUS
approved