login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A246803
Solutions of phi(sigma(x)) = x-phi(x).
1
6, 10, 14, 20, 22, 24, 34, 40, 44, 46, 56, 62, 68, 88, 92, 94, 106, 136, 142, 152, 164, 184, 188, 212, 214, 232, 248, 254, 284, 332, 376, 382, 384, 424, 428, 464, 472, 568, 632, 640, 668, 712, 764, 766, 856, 862, 864, 896, 944, 1004, 1016, 1172, 1192, 1294, 1408, 1424, 1432
OFFSET
1,1
COMMENTS
For n>1, 2*A005105(n) is in the sequence.
So is 8*A005105(n). 4*A005105(n) is in the sequence if A005105(n) == 5 mod 6 (i.e., is not 2 or in A000668). - Robert Israel, Oct 01 2014
LINKS
EXAMPLE
20 is in the sequence since phi(sigma(20)) = phi(42) = 12 = 20-phi(20).
MAPLE
with(numtheory): A246803:=n->`if`(phi(sigma(n)) = n-phi(n), n, NULL): seq(A246803(n), n=1..2000); # Wesley Ivan Hurt, Sep 30 2014
MATHEMATICA
Select[Range[1500], EulerPhi[DivisorSigma[1, #]]==#-EulerPhi[#]&]
PROG
(PARI) is(k) = {my(f = factor(k)); eulerphi(sigma(f)) == k - eulerphi(f); } \\ Amiram Eldar, Nov 10 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Jahangeer Kholdi, Sep 28 2014
STATUS
approved