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!)
A081377 Numbers n such that the set of prime divisors of phi(n) is equal to the set of prime divisors of sigma(n). 9

%I #20 Sep 09 2017 23:18:51

%S 1,3,14,35,42,70,105,119,209,210,238,248,297,357,418,477,594,595,616,

%T 627,714,744,954,1045,1178,1190,1240,1254,1463,1485,1672,1674,1736,

%U 1785,1848,1863,2079,2090,2376,2385,2540,2728,2926,2945,2970,3080,3135,3302

%N Numbers n such that the set of prime divisors of phi(n) is equal to the set of prime divisors of sigma(n).

%C The multiplicities of the divisors are to be ignored.

%C Is it true that 1 is the only term in both this sequence and A055744? - _Farideh Firoozbakht_, Jul 01 2008. Answer from Luke Pebody, Jul 10 2008: No! In fact the numbers 103654150315463023813006470 and 6534150553412193640795377701190 are in both sequences.

%H T. D. Noe, <a href="/A081377/b081377.txt">Table of n, a(n) for n = 1..1000</a>

%H Prime Puzzles, <a href="http://www.primepuzzles.net/puzzles/puzz_451.htm">Puzzle 451</a>

%e n=418=2*11*19: sigma(418)=720, phi[418]=180, common prime factor set ={2,3,5}

%e k = 477 = 3*3*53: sigma(477) = 702 = 2*3*3*3*13; phi(477) = 312 = 2*2*2*3*13; common factor set: {2,3,13}.

%e phi(89999)=66528=2^5*3^3*7*11 and sigma(89999)=118272=2^9*3*7*11 so 89999 is in the sequence.

%t ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] Do[s=ba[DivisorSigma[1, n]]; s1=ba[EulerPhi[n]]; If[Equal[s, s1], k=k+1; Print[n]], {n, 1, 10000}]

%o (PARI) is(n)=factor(eulerphi(n=factor(n)))[,1]==factor(sigma(n))[,1] \\ _Charles R Greathouse IV_, Nov 27 2013

%Y Cf. A000010, A000203, A076533, A065642, A081378, A110751, A110819, A027598, A141718.

%K nonn

%O 1,2

%A _Labos Elemer_, Mar 26 2003

%E Edited by _N. J. A. Sloane_, Jul 11 2008 at the suggestion of Farideh Firoozbakht

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 15 20:14 EDT 2024. Contains 372549 sequences. (Running on oeis4.)