login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A075033 Numbers n such that tau(n) <= tau(n+1) <= tau(n+2) <= tau(n+3) where tau(n) = number of divisors of n. 4
1, 13, 25, 33, 37, 61, 73, 85, 93, 97, 121, 133, 141, 145, 157, 187, 193, 201, 205, 213, 217, 229, 241, 242, 243, 253, 277, 283, 301, 361, 373, 393, 397, 421, 427, 445, 453, 457, 481, 537, 541, 547, 603, 613, 633, 661, 662, 663, 697, 723, 733, 745, 757, 781 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
With[{s = Partition[Differences@ Array[DivisorSigma[0, #] &, 800], 3, 1]}, Position[s, _?(AllTrue[#, # >= 0 &] &), {1}, Heads -> False][[All, 1]]] (* Michael De Vlieger, Jun 28 2020 *)
PROG
(Python)
from sympy import divisor_count as tau
[n for n in range(1, 801) if tau(n) <= tau(n+1) <= tau(n+2) <= tau(n+3)] # Karl V. Keller, Jr., Jul 10 2020
CROSSREFS
Sequence in context: A032478 A280925 A161603 * A017533 A309809 A264732
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 02 2002
EXTENSIONS
Added missing term and a(11)-a(54) from Donovan Johnson, Jun 15 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)