OFFSET
1,1
COMMENTS
Numbers in A075025 with record number of divisors.
EXAMPLE
351 is a term in this sequence because d(351) = 8, d(350) = 12, and d(352) = 12, so 351 is a number that has fewer divisors than each of its neighbors, but no number below 351 has that property and has at least 8 divisors.
PROG
(PARI) lista(kmax) = my(d1 = numdiv(1), d2 = numdiv(2), d3, dm = 0); for(k = 3, kmax, d3 = numdiv(k); if(d2 < d1 && d2 < d3 && d2 > dm, print1(k-1, ", "); dm = d2); d1 = d2; d2 = d3); \\ Amiram Eldar, Jan 16 2024
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Zhicheng Wei, Jan 14 2024
EXTENSIONS
a(9)-a(20) from Michel Marcus, Jan 15 2024
a(21)-a(22) from Amiram Eldar, Jan 16 2024
a(23)-a(28) from Martin Ehrenstein, Feb 08 2024
STATUS
approved