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.

A064595 Nontrivial nonunitary multiply perfect numbers: the sum of the nonunitary divisors of n is a positive multiple of n; i.e., (sigma(n) - usigma(n))/n is a positive integer.

Original entry on oeis.org

24, 112, 1984, 2520, 31320, 32512, 1163160, 2208384, 3053232, 6535296, 13472928, 123165600, 134201344, 186076800, 365959296, 3456573120, 4401782352, 5517818880, 18924364800, 34359476224, 325377803520
Offset: 1

Views

Author

Dean Hickerson, Sep 25 2001

Keywords

Crossrefs

Programs

  • Mathematica
    nusigma[ n_ ] := DivisorSigma[ 1, n ]-Times@@(1+Power@@#&/@FactorInteger[ n ]); For[ n=1, True, n++, v=nusigma[ n ]; If[ v>0&&Mod[ v, n ]==0, Print[ n ] ] ]