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.

A068547 Numbers m such that m*tau(m)>5*prime(m).

Original entry on oeis.org

2520, 3360, 3780, 3960, 4200, 4320, 5040, 6300, 6720, 7200, 7560, 7920, 8400, 8640, 8820, 9240, 9360, 9900, 10080, 10560, 10800, 10920, 11088, 11340, 11520, 11700, 11760, 11880, 12096, 12240, 12480, 12600, 12960, 13104, 13200, 13440, 13680
Offset: 1

Views

Author

Benoit Cloitre, Mar 22 2002

Keywords

Crossrefs

Programs

  • Maple
    R:= NULL: count:= 0: p:= 0:
    for n from 1 while count < 100 do
      p:= nextprime(p);
      if n * numtheory:-tau(n) > 5 * p then R:= R,n; count:= count+1;  fi;
    od:
    R; # Robert Israel, May 13 2025
  • Mathematica
    Select[Range[15000],# DivisorSigma[0,#]>5 Prime[#]&] (* Harvey P. Dale, Jul 17 2023 *)