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.

A309943 Numbers k such that k * d(k) > j * d(j) for all j < k, where d(k) is the number of divisors of k (A000005).

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 10, 12, 16, 18, 20, 24, 30, 36, 42, 48, 60, 72, 84, 90, 96, 108, 120, 144, 168, 180, 210, 216, 240, 288, 300, 336, 360, 420, 480, 504, 540, 600, 630, 660, 672, 720, 840, 1008, 1080, 1200, 1260, 1440, 1680, 1980, 2016, 2100, 2160, 2520, 3120
Offset: 1

Views

Author

Amiram Eldar, Aug 24 2019

Keywords

Comments

Differs from A002093 for n >= 41.
Nicolas asks if there are infinitely many terms of this sequence that are not largely composite (A067128).

Crossrefs

Programs

  • Mathematica
    s = {}; dm = 0; Do[d1 = n * DivisorSigma[0, n]; If[d1 > dm, dm = d1; AppendTo[s, n]], {n, 1, 10^4}]; s