login
A230372
Numbers n such that phi(sigma(n)) = sigma(n) - phi(n).
2
2, 3, 5, 119, 143, 287, 623, 3983, 6851, 7429, 13727, 18601, 37213, 48209, 118921, 181559, 322889, 423181, 891157, 926041, 961727, 1115261, 1150747, 1656857, 1693081, 1799063, 2219693, 2303653, 2325983, 2350337, 2539273, 2752463, 2755841, 3320291, 3624887
OFFSET
1,1
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..535 (terms < 3*10^10)
EXAMPLE
phi(119) = 96, sigma(119) = 144, phi(144) = 48 and 144 - 96 = 48.
MAPLE
with(numtheory); P:=proc(q) local n;
for n from 1 to q do
if phi(sigma(n))=sigma(n)-phi(n) then print(n);
fi; od; end: P(10^6);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Oct 17 2013
EXTENSIONS
a(22) - a(35) from Donovan Johnson, Oct 21 2013
STATUS
approved