OFFSET
1,1
LINKS
Karl V. Keller, Jr., Table of n, a(n) for n = 1..10000
MATHEMATICA
nn = 400; t = DivisorSigma[0, Range[nn]]; Select[Range[nn-2], t[[#]] >= t[[#+1]] >= t[[#+2]] &] (* Harvey P. Dale, May 24 2012 *)
PROG
(Python)
from sympy import divisor_count as tau
[n for n in range(1, 333) if tau(n) >= tau(n+1) >= tau(n+2)] # Karl V. Keller, Jr., Jul 10 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 02 2002
EXTENSIONS
More terms from Benoit Cloitre, Sep 07 2002
STATUS
approved