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.

Showing 1-4 of 4 results.

A064591 Nonunitary perfect numbers: k is the sum of its nonunitary divisors; i.e., k = sigma(k) - usigma(k).

Original entry on oeis.org

24, 112, 1984, 32512, 134201344, 34359476224, 549754765312
Offset: 1

Views

Author

Dean Hickerson, Sep 25 2001

Keywords

Comments

There are no other terms up to 1.2*10^14.
If P (A000396) is an even perfect number, then 4*P is in the sequence. Are there any others?
If there are no terms of another form, the sequence goes on with 9223372032559808512 = 2^32 * A000668(8), 10633823966279326978618770463815368704 = 2^62 * A000668(9), 766247770432944429179173512337214552523989286192676864 = 2^90 * A000668(10), ... - Michel Lagneau, Jan 21 2015
Conjecture: let s0 be the sum of the inverses of the even divisors of a number n and s1 the sum of the inverses of the odd divisors of n; then n is in the sequence iff 2*s0-s1 = 1. - Michel Lagneau, Jan 21 2015
Ligh & Wall proved that 2^(p+1)*(2^p-1) is a term if p and 2^p-1 are primes, and that all the nonunitary perfect numbers below 10^6 are of this form. - Amiram Eldar, Sep 27 2018
If k is in the sequence and k = 2^m*p^a then k is of the form 4*P for an even perfect P. See the link to MathOverflow. - Joshua Zelinsky, Mar 07 2024

Examples

			The sum of the nonunitary divisors of 24 is 2 + 4 + 6 + 12 = 24.
		

Crossrefs

Programs

  • Mathematica
    nusigma[ n_ ] := DivisorSigma[ 1, n ]-Times@@(1+Power@@#&/@FactorInteger[ n ]); For[ n=1, True, n++, If[ nusigma[ n ]==n, Print[ n ] ] ]
    Do[s0=0;s1=0;Do[d=Divisors[n][[i]];If[Mod[d,2]==0,s0=s0+1/d,s1=s1+1/d],{i,1,Length[Divisors[n]]}];If[2*s0-s1==1,Print[n]],{n,2,10^9,2}] (* Michel Lagneau, Jan 21 2015 *)

A064597 Nonunitary abundant numbers: the sum of the nonunitary divisors of n is larger than n; i.e., sigma(n) - usigma(n) > n.

Original entry on oeis.org

36, 48, 72, 80, 96, 108, 120, 144, 160, 168, 180, 192, 200, 216, 224, 240, 252, 264, 280, 288, 300, 312, 320, 324, 336, 352, 360, 384, 392, 396, 400, 408, 416, 432, 448, 456, 468, 480, 504, 528, 540, 552, 560, 576, 588, 600, 612, 624, 640, 648, 672, 684
Offset: 1

Views

Author

Dean Hickerson, Sep 25 2001

Keywords

Examples

			The sum of the nonunitary divisors of 36 is 2 + 3 + 6 + 12 + 18 = 41.
		

Crossrefs

Programs

  • Mathematica
    nusigma[ n_ ] := DivisorSigma[ 1, n ]-Times@@(1+Power@@#&/@FactorInteger[ n ]); For[ n=1, True, n++, If[ nusigma[ n ]>n, Print[ n ] ] ]
  • PARI
    usigma(n)= { local(f,s=1); f=factor(n); for(i=1, matsize(f)[1], s*=1 + f[i, 1]^f[i, 2]); return(s) } { n=0; for (m=1, 10^9, if (sigma(m) - usigma(m) > m, write("b064597.txt", n++, " ", m); if (n==1000, break)) ) } \\ Harry J. Smith, Sep 19 2009

A080256 Sum of numbers of distinct and of all prime factors of n.

Original entry on oeis.org

0, 2, 2, 3, 2, 4, 2, 4, 3, 4, 2, 5, 2, 4, 4, 5, 2, 5, 2, 5, 4, 4, 2, 6, 3, 4, 4, 5, 2, 6, 2, 6, 4, 4, 4, 6, 2, 4, 4, 6, 2, 6, 2, 5, 5, 4, 2, 7, 3, 5, 4, 5, 2, 6, 4, 6, 4, 4, 2, 7, 2, 4, 5, 7, 4, 6, 2, 5, 4, 6, 2, 7, 2, 4, 5, 5, 4, 6, 2, 7, 5, 4, 2, 7, 4, 4, 4, 6, 2, 7, 4, 5, 4, 4, 4, 8, 2, 5, 5, 6, 2, 6, 2, 6, 6
Offset: 1

Views

Author

Reinhard Zumkeller, Feb 10 2003

Keywords

Comments

a(n) = 2 iff n is prime, A000040; a(n) > 2 iff n is composite, A002808; a(n) <= 3 iff n is prime or square of prime, A000430; a(n) = 3 iff n is square of prime, A001248; a(A080257(n)) > 3;
a(n) <= 4 iff product of proper divisors <= n^2, A007964; a(n) = 4 iff n has four divisors, A030513; a(n) > 4 iff product of proper divisors > n^2, A058080; a(A064598(n)) <= 5; a(A080258(n)) = 5.

Crossrefs

Programs

  • Mathematica
    f[n_] := Plus @@ (Last /@ FactorInteger[n] + 1); Table[ f[n], {n, 105}] (* Robert G. Wilson v, Aug 03 2005 *)
  • PARI
    a(n) = {my(f = factor(n)); omega(f) + bigomega(f);} \\ Amiram Eldar, Sep 28 2023

Formula

a(n) = Omega(n) + omega(n) = A001221(n) + A001222(n).
Additive with a(p^e) = e + 1.
Sum_{k=1..n} a(k) = 2 * n * log(log(n)) + c * n + O(n/log(n)), where c = A077761 + A083342 = 1.29615109474508069537... . - Amiram Eldar, Sep 28 2023

A335142 Nonunitary Zumkeller numbers: numbers whose set of nonunitary divisors is nonempty and can be partitioned into two disjoint sets of equal sum.

Original entry on oeis.org

24, 48, 54, 80, 96, 112, 120, 150, 160, 168, 180, 192, 216, 224, 240, 252, 264, 270, 280, 294, 312, 320, 336, 352, 360, 378, 384, 396, 408, 416, 432, 448, 456, 468, 480, 486, 504, 528, 540, 552, 560, 594, 600, 612, 624, 630, 640, 672, 684, 696, 702, 704, 720, 726
Offset: 1

Views

Author

Amiram Eldar, May 25 2020

Keywords

Comments

Apparently, most of the terms are nonunitary abundant (A064597). Term that are nonunitary deficient (A064598) are 54, 150, 270, 294, 378, ...

Examples

			24 is a term since its set of nonunitary divisors, {2, 4, 6, 12}, can be partitioned into the two disjoint sets, {2, 4, 6} and {12}, whose sum is equal: 2 + 4 + 6 = 12.
		

Crossrefs

Programs

  • Mathematica
    nuzQ[n_] := Module[{d = Select[Divisors[n], GCD[#, n/#] > 1 &], sum, x}, sum = Plus @@ d; sum > 0 && EvenQ[sum] && CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]] > 0]; Select[Range[1000], nuzQ]
Showing 1-4 of 4 results.