OFFSET
1,1
COMMENTS
a(6) > 2*10^11, if it exists. - Giovanni Resta, Apr 10 2019
EXAMPLE
Fixed points: 27,...
sigma(12) = 28, phi(12) = 4, tau(12) = 6 and 28 + 4 - 6 - 12 = 14.
sigma(14) = 24, phi(14) = 6, tau(14) = 4 and 24 + 6 - 4 - 14 = 12.
MAPLE
with(numtheory); P:=proc(q)local a, n;
for n from 1 to q do a:=sigma(n)+phi(n)-tau(n)-n;
if sigma(a)+phi(a)-tau(a)-a=n then print(n);
fi; od; end: P(10^6);
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Feb 20 2014
STATUS
approved