OFFSET
1,2
COMMENTS
a(n) is the smallest term of A002183 that is >= n.
EXAMPLE
a(5) = 6 because A061799(5) = 12 has 6 divisors.
PROG
(PARI) for(n=1, 100, my(s=n); while(numdiv(s)<n, s++); print1(numdiv(s), ", ")); \\ Michel Marcus, Jul 07 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Jul 07 2022
STATUS
approved