OFFSET
1,1
COMMENTS
Fixed points of the transform k -> sigma(k) - k - phi(sigma(k)-k).
EXAMPLE
sigma(276) = 672 and 672 - 276 = 396; phi(396) = 120 and 396 - 120 = 276.
MAPLE
with(numtheory); P:=proc(q) local n; k:=0;
for n from 1 to q do if 2*n=sigma(n)-phi(sigma(n)-n) then print(n);
fi; od; end: P(10^9);
PROG
(PARI) isok(n) = (x = sigma(n) - n) && (n == x - eulerphi(x)); \\ Michel Marcus, Mar 28 2014
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Mar 27 2014
EXTENSIONS
a(17)-a(20) from Michel Marcus, Mar 28 2014
a(21)-a(24) from Kevin P. Thompson, Jan 14 2022
a(25) from Kevin P. Thompson, Apr 19 2022
a(26) from Kevin P. Thompson, Jun 13 2022
STATUS
approved