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.

A327633 Noninfinitary perfect numbers: numbers k whose sum of noninfinitary divisors equals k.

Original entry on oeis.org

112, 1344, 32512, 390144, 483840, 5930176, 2952609792
Offset: 1

Views

Author

Amiram Eldar, Sep 20 2019

Keywords

Comments

Numbers k such that sigma(k) - isigma(k) = A000203(k) - A049417(k) = k.
No more terms below 3 * 10^10.

Examples

			112 is in the sequence since its noninfinitary divisors are {2, 4, 8, 14, 28, 56} whose sum is 112.
		

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := p^(2^(-1 + Position[Reverse @ IntegerDigits[e, 2], ?(# == 1 &)])); nisigma[1] = 0; nisigma[n] := DivisorSigma[1, n] - Times @@ (Flatten @ (f @@@ FactorInteger[n]) + 1); Select[Range[500000], nisigma[#] == # &]