login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A132793
Numbers n such that sigma(phi(n))-phi(n) = phi(sigma(n)-n).
2
3, 70, 138, 792, 924, 1692, 1932, 2124, 2250, 2988, 3852, 30936, 112644, 189252, 240120, 261660, 263928, 338760, 364308, 379470, 390432, 504216, 529110, 785568, 862290, 917700, 979596, 1022310, 1124220, 1404270, 1434072, 2004372, 2526000
OFFSET
1,1
COMMENTS
Used sigma(n)-n, namely the sum of proper divisors.
LINKS
MAPLE
with(numtheory); P:=proc(n) local i, j, k; for i from 1 by 1 to n do j:=sigma(phi(i))-phi(i); k:=phi(sigma(i)-i); if j=k then print(i); fi; od; end: P(150000);
MATHEMATICA
Select[Range[2600000], DivisorSigma[1, EulerPhi[#]]-EulerPhi[#]==EulerPhi[ DivisorSigma[1, #]-#]&] (* Harvey P. Dale, Mar 24 2016 *)
PROG
(PARI) isA132793(n)={ if( sigma(eulerphi(n))-eulerphi(n) == eulerphi(sigma(n)-n), 1, 0 ) ; }
{ for(n=2, 6000000, if(isA132793(n), print1(n, ", ") ; ) ; ) ; } \\ R. J. Mathar, Nov 11 2007
CROSSREFS
KEYWORD
nonn,changed
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Nov 11 2007
Invalid first term removed by Donovan Johnson, Sep 11 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 22 15:09 EDT 2024. Contains 376114 sequences. (Running on oeis4.)