OFFSET
1,1
COMMENTS
The terms have already been considered as "strongly semiprimes".
LINKS
Sh. T. Ishmukhametov and F. F. Sharifullina, On distribution of semiprime numbers, Izvestiya Vysshikh Uchebnykh Zavedenii. Matematika, 2014, No. 8, pp. 53-59. English translation, Russian Mathematics, Vol. 58, No. 8 (2014), pp. 43-48, alternative link.
FORMULA
Limit_{n->oo} n*log(a(n))/a(n) = log(3).
MAPLE
with(numtheory):
q:= n-> bigomega(n)=2 and (s-> max(s)<min(s)^3)(factorset(n)):
select(q, [$4..500])[]; # Alois P. Heinz, May 10 2023
MATHEMATICA
Select[Range[335], (f = FactorInteger[#])[[;; , 2]] == {2} || (f[[;; , 2]] == {1, 1} && f[[2, 1]] < f[[1, 1]]^3) &] (* Amiram Eldar, May 10 2023 *)
PROG
(PARI) isok(n)=if(bigomega(n)<>2, 0, my(minfact=factor(n)[1, 1], maxfact=n/minfact); maxfact<minfact^3)
select(isok, [1..500])
CROSSREFS
KEYWORD
nonn
AUTHOR
Alain Rocchelli, May 10 2023
STATUS
approved