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!)
A230371 Numbers n such that sigma(phi(n)) = sigma(n) - phi(n). 2
172, 248, 765, 4712, 8924, 16898, 28552, 50692, 99302, 229845, 279490, 280456, 292995, 300430, 323488, 334990, 338990, 346318, 376790, 403790, 521738, 548504, 617918, 1445824, 1625806, 2642596, 2967724, 3935764, 7878836, 8751946, 8810865, 9346790, 11741128 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Tested up to n = 10^6.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..228 (terms < 3*10^10)
EXAMPLE
phi(172) = 84, sigma(172) = 308, sigma(84) = 224 and 308 - 84 = 224.
MAPLE
with(numtheory); P:=proc(q) local n;
for n from 1 to q do
if sigma(phi(n))=sigma(n)-phi(n) then print(n);
fi; od; end: P(10^6);
MATHEMATICA
dpQ[n_]:=Module[{p=EulerPhi[n]}, DivisorSigma[1, p]==DivisorSigma[1, n]-p]; Select[Range[12*10^6], dpQ] (* Harvey P. Dale, Apr 27 2016 *)
CROSSREFS
Sequence in context: A224555 A146339 A067356 * A056132 A261706 A043387
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Oct 17 2013
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 12:37 EDT 2024. Contains 371937 sequences. (Running on oeis4.)