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!)
A014567 Numbers k such that k and sigma(k) are relatively prime, where sigma(k) = sum of divisors of k (A000203). 50

%I #60 Aug 07 2022 23:15:51

%S 1,2,3,4,5,7,8,9,11,13,16,17,19,21,23,25,27,29,31,32,35,36,37,39,41,

%T 43,47,49,50,53,55,57,59,61,63,64,65,67,71,73,75,77,79,81,83,85,89,93,

%U 97,98,100,101,103,107,109,111,113,115,119,121,125,127,128,129,131,133

%N Numbers k such that k and sigma(k) are relatively prime, where sigma(k) = sum of divisors of k (A000203).

%C Related to "solitary numbers": n is solitary if there is no other integer m such that sigma(m)/m = sigma(n)/n.

%C It is easy to show that if n and sigma(n) are relatively prime then n is solitary. But the converse is not true; for example, 18, 45, 48 and 52 are solitary. Probably also 10, 14, 15, 20, 22 and many others are solitary, but I do not think that will ever be proved. - _Dean Hickerson_

%C From _Daniel Forgues_, Jun 23 2009: (Start)

%C Union of unit, primes and Duffinian numbers.

%C Duffinian numbers (A003624) are the composite numbers (including, among others, the proper prime powers) for which (n, sigma(n)) = 1. (End)

%C A009194(a(n)) = 1. - _Reinhard Zumkeller_, Mar 23 2013

%C These numbers satisfy (denominator of sigma(n)/n) = n. - _Michel Marcus_, Oct 27 2013

%C The asymptotic density of this sequence is 0 (Dressler, 1974; Luca, 2007). - _Amiram Eldar_, Jul 23 2020

%C If m*n is in this sequence and gcd(m,n) = 1, then m and n are both in this sequence. - _Jianing Song_, Aug 07 2022

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

%H C. W. Anderson and D. Hickerson, <a href="http://www.jstor.org/stable/2318325">Problem 6020: Friendly Integers</a>, Amer. Math. Monthly 84, 65-66, 1977.

%H Robert E. Dressler, <a href="https://doi.org/10.4153/CMB-1974-019-5">On a theorem of Niven</a>, Canadian Mathematical Bulletin, Vol. 17, No. 1 (1974), pp. 109-110.

%H Andrew Feist, <a href="http://www.math-cs.ucmo.edu/~mjms/2003.3/feist.pdf">Fun with the sigma(n) function</a>, Missouri Journal of Mathematical Sciences 15:3 (2003), pp. 173-177.

%H P. A. Loomis, <a href="http://dx.doi.org/10.1142/S0219498815400046">New families of solitary numbers</a>, J. Algebra and Applications, 14 (No. 9, 2015), #1540004 (6 pages).

%H Florian Luca, <a href="http://projecteuclid.org/euclid.mjms/1316032973">On the densities of some subsets of integers</a>, Missouri Journal of Mathematical Sciences 19:3 (2007), pp. 167-170.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/SolitaryNumber.html">Solitary Number.</a>

%F a(n) << n log n. Can this be improved? - _Charles R Greathouse IV_, Feb 13 2013

%F a(n) >> n log log log n, see Luca. - _Charles R Greathouse IV_, Feb 17 2014

%e sigma(21) = 1 + 3 + 7 + 21 = 32 is relatively prime to 21, so 21 is in the sequence.

%t lst={};Do[d=DivisorSigma[1, n];If[GCD[d, n]==1, AppendTo[lst, n]], {n, 6!}];lst (* _Vladimir Joseph Stephan Orlovsky_, Sep 01 2008 *)

%t Select[Range[150],CoprimeQ[#,DivisorSigma[1,#]]&] (* _Harvey P. Dale_, Jan 23 2015 *)

%o (PARI) is(n)=gcd(n,sigma(n))==1 \\ _Charles R Greathouse IV_, Feb 13 2013

%o (Haskell)

%o a014567 n = a014567_list !! (n-1)

%o a014567_list = filter ((== 1) . a009194) [1..]

%o -- _Reinhard Zumkeller_, Mar 23 2013

%o (Python)

%o from math import gcd

%o from sympy import divisor_sigma

%o def ok(n): d = divisor_sigma(n, 1); return gcd(n, d) == 1

%o print([k for k in range(1, 134) if ok(k)]) # _Michael S. Branicky_, Mar 28 2022

%Y Cf. A003624.

%Y Cf. A069059 (complement).

%Y Includes A000961 as a subsequence.

%K nonn,easy,nice

%O 1,2

%A _Eric W. Weisstein_

%E More terms from _Labos Elemer_

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 March 28 05:02 EDT 2024. Contains 371235 sequences. (Running on oeis4.)