OFFSET
1,2
COMMENTS
For a number n to be in this sequence, it must have the following conditions be true, where d(n) represents the number of divisors of n (A000005): d(n) > d(k), for all k < n, and there does not exist a number e > 0 such that d(n)/n^e >= d(k)/k^e for k < n and d(n)/n^e > d(k)/k^e for k > n.
LINKS
David Terr, Superior Highly Composite Number.
Eric Weisstein's World of Mathematics, Highly Composite Number.
Wikipedia, Highly composite number.
Wikipedia, Superior highly composite number.
EXAMPLE
4 is in the sequence because it has three factors, more than any preceding number, making it highly composite, but it is not a superior highly composite number.
PROG
(PARI) lista(nn)=my(v, w=[1, 2, 4], r=1, p=primes(primepi(2^log(nn)))); v=setminus(Set(vector(nn, i, prod(n=1, primepi(2^log(i)), p[n]^floor(1/(p[n]^(1/log(i))-1))))), [1]); forstep(x=6, v[#v], 6, if(numdiv(x)>r, r=numdiv(x); w=setunion(w, [x]))); setminus(w, v)
CROSSREFS
KEYWORD
nonn
AUTHOR
Iain Fox, Aug 23 2020
STATUS
approved
