OFFSET
1,1
COMMENTS
All numbers of the form 2^k1*3^k2*...*p_n^k_n, where k1 >= k2 >= ... >= k_n, and the '=' occurs at least once, sorted.
It appears that all highly composite numbers (A002182) greater than 720 are in this sequence. - Walter Roscello, Dec 24 2013
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..279 from Walter Roscello)
EXAMPLE
a(1) = 2*3, a(2) = 2*3*5, a(3) = 2^2*3^2, a(4) = 2^2*3*5.
MATHEMATICA
okQ[n_] := Module[{pp, ee}, {pp, ee} = Transpose[FactorInteger[n]]; Length[pp] == PrimePi[pp // Last] && GreaterEqual @@ ee && Sort[ee] != Union[ee]]; Select[Range[20000], okQ] (* Jean-François Alcover, Jun 17 2019 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Peter Luschny, Jun 20 2009
EXTENSIONS
Terms up to n=279 added by Walter Roscello, Dec 24 2013
STATUS
approved
