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-1 of 1 results.

A055721 Numbers n such that sigma_2(n)/n > sigma_2(k)/k for all k < n.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 28, 30, 36, 40, 42, 48, 54, 60, 66, 70, 72, 78, 80, 84, 90, 96, 108, 120, 132, 140, 144, 150, 156, 168, 180, 192, 204, 210, 216, 228, 240, 252, 264, 270, 276, 288, 300, 312, 324, 330, 336, 348, 360, 384, 396, 408
Offset: 1

Views

Author

Robert G. Wilson v, Jun 09 2000

Keywords

Comments

sigma_2(n) is the sum of the squares of the divisors of n (A001157).

Crossrefs

Cf. A002182 (records of sigma_0(n)), A002093 (records of sigma_1(n)), A004394 (records of sigma_1(n)/n), A193988 (records of sigma_2(n)), A208767 (records of sigma_2(n)/n^2).

Programs

  • Maple
    m:= 0: res:= NULL:
    for n from 1 to 500 do
      r:= numtheory:-sigma[2](n)/n;
      if r > m then
        m:= r;
        res:= res, n;
      fi
    od:
    res; # Robert Israel, Nov 12 2016
  • Mathematica
    a=0; Do[b=DivisorSigma[2, n]/n; If[b>a, a=b; Print[n]], {n, 1, 10^7}]

Extensions

Name edited by Michel Marcus, Nov 12 2016
Showing 1-1 of 1 results.