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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A239802 Numbers n such that if x = n - phi(n) then n = sigma(x) - x, where phi(n) is the Euler totient function. 1
36, 42, 186, 222, 270, 390, 396, 440, 656, 2220, 4140, 5622, 9400, 20214, 94816, 282540, 17578122, 85046840, 125948800, 145805120, 434435360 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Fixed points of the transform n -> sigma(n-phi(n)) - n + phi(n).
LINKS
EXAMPLE
phi(222) = 72 and 222 - 72 = 150; sigma(150) = 372 and 372 - 150 = 222.
MAPLE
with(numtheory); P:=proc(q) local n; k:=0;
for n from 1 to q do if 2*n=sigma(n-phi(n))+phi(n) then print(n);
fi; od; end: P(10^9);
PROG
(PARI) isok(n) = (x = n - eulerphi(n)) && (n == sigma(x) - x); \\ Michel Marcus, Mar 28 2014
CROSSREFS
Sequence in context: A162526 A078299 A225028 * A266242 A274241 A062519
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Mar 27 2014
EXTENSIONS
a(17)-a(21) from Michel Marcus, Mar 28 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)