The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A257048 Numbers n for which the sum of their prime factors (with repetition) divides the Euler totient function. 2
9, 15, 16, 25, 27, 35, 42, 49, 72, 95, 119, 121, 140, 143, 154, 168, 169, 200, 209, 220, 240, 256, 264, 287, 288, 289, 297, 315, 319, 323, 342, 343, 361, 364, 377, 378, 442, 483, 490, 520, 525, 527, 529, 540, 559, 585, 588, 616, 620, 624, 625, 648, 693, 702, 729 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The value of Euler totient function for n = 15 is 8. Prime factors of 15 are 3, 5 and their sum is 3 + 5 = 8. Finally, 8 / 8 = 1.
The value of Euler totient function for n = 140 is 48. Prime factors of 140 are 2, 2, 5, 7 and their sum is 2 + 2 + 5 + 7 = 16. Finally, 48 / 16 = 3.
MAPLE
with(numtheory); P:=proc(q) local a, n;
for n from 1 to q do a:=ifactors(n)[2];
if type(phi(n)/add(a[k][1]*a[k][2], k=1..nops(a)), integer)
then print(n); fi; od; end: P(10^9);
MATHEMATICA
Rest@ Select[Range@ 729, Mod[EulerPhi@ #, Total@ Flatten[Table[#1, {#2}] & @@@ FactorInteger@ #]] == 0 &] (* Michael De Vlieger, Apr 15 2015 *)
CROSSREFS
Sequence in context: A136410 A324879 A066942 * A363896 A061838 A037002
KEYWORD
nonn,easy
AUTHOR
Paolo P. Lava, Apr 15 2015
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 May 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)