OFFSET
1,2
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..100 (first 83 terms from Charles R Greathouse IV)
PROG
(PARI) print(1" "1); N=1; for(n=2, 28, while(numdiv(N)!=n, N++); print(n" "N)) \\ Charles R Greathouse IV, Sep 08 2021
(Python)
from sympy import divisor_count
from itertools import count, islice
def agen(an=1, startn=1):
for n in count(startn):
while divisor_count(an) != n: an += 1
yield an
print(list(islice(agen(), 22))) # Michael S. Branicky, Jan 16 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 04 2002
EXTENSIONS
Corrected and extended by Vladeta Jovovic, Jun 19 2002
More terms from David Wasserman, Apr 21 2003
a(25)-a(28) corrected by Charles R Greathouse IV, Sep 14 2021
STATUS
approved