login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A359956
a(n) is the smallest number with exactly n divisors that are greater than or equal to 5.
3
5, 10, 18, 24, 30, 48, 80, 60, 90, 192, 144, 120, 210, 180, 450, 240, 560, 1600, 5120, 360, 630, 3465, 900, 960, 2240, 720, 2800, 840, 1890, 10010, 5184, 1260, 3150, 17325, 36864, 1680, 5670, 2880, 11200, 15360, 3600, 19600, 99225, 2520, 6930, 6480, 70000, 61440
OFFSET
1,1
MATHEMATICA
DeleteDuplicates[SortBy[Table[{n, Count[Divisors[n], _?(#>4&)]}, {n, 100000}], Last], GreaterEqual[ #1[[2]], #2[[2]]]&][[;; , 1]] (* Harvey P. Dale, Aug 18 2024 *)
PROG
(PARI) a(n) = my(k=1); while (sumdiv(k, d, (d>=5)) != n, k++); k; \\ Michel Marcus, Jan 20 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 19 2023
STATUS
approved