cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A095738 Numbers that are coprime to sigma but are not prime powers.

Original entry on oeis.org

21, 35, 36, 39, 50, 55, 57, 63, 65, 75, 77, 85, 93, 98, 100, 111, 115, 119, 129, 133, 143, 144, 155, 161, 171, 175, 183, 185, 187, 189, 201, 203, 205, 209, 215, 217, 219, 221, 225, 235, 237, 242, 245, 247, 253, 259, 265, 275, 279, 291, 299, 301, 305, 309, 319
Offset: 1

Views

Author

Walter Nissen, Jul 08 2004

Keywords

Comments

Abundancy is defined as the ratio of the multiplicative sum-of-divisors function to the integer itself: abund(n) = sigma(n)/n. E.g., abund(10) = sigma(10) / 10 = (1+2+5+10) / 10 = 1.8 = 9 / 5.
Integers m and n are friendly if and only if they have the same abundancy. E.g., abund(12) = abund(234) = 7 / 3, so 12 and 234 are friends.
Integers which have no friends are called solitary.
The numbers in this sequence are solitary.
Compare abundancy to abundance as defined in A033880.

Crossrefs

Programs

  • Mathematica
    Select[Range[320], PrimeNu[#] > 1 && GCD[#, DivisorSigma[1, #]] == 1 &] (* Amiram Eldar, Jun 25 2019 *)
  • PARI
    isok(n) = (gcd(sigma(n), n) == 1) && (! isprime(n)) && (! (ispower(n, , &p) && isprime(p))); \\ Michel Marcus, Jan 24 2014

Extensions

Edited by Franklin T. Adams-Watters, Mar 06 2014