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.

A064596 Smallest nonunitary multiperfect number of index n; i.e., smallest k such that sigma(k) - usigma(k) = nk.

Original entry on oeis.org

1, 24, 2520, 186076800
Offset: 0

Views

Author

Dean Hickerson, Sep 25 2001

Keywords

Comments

4.5*10^14 < a(4) <= 1081895452249824576000.

Crossrefs

Programs

  • Mathematica
    nusigma[ n_ ] := DivisorSigma[ 1, n ]-Times@@(1+Power@@#&/@FactorInteger[ n ]); a[ n_ ] := For[ k=1, True, k++, If[ nusigma[ k ]==n k, Return[ k ] ] ]