OFFSET
1,1
COMMENTS
LINKS
Felix Huber, Table of n, a(n) for n = 1..10000
EXAMPLE
12 = 2*2*3 is in the sequence because 2 + 2 > 3.
20 = 2*2*5 is not in the sequence because 2 + 2 < 5.
30 = 2*3*5 is not in the sequence because 2 + 3 = 5.
MAPLE
A379033:=proc(n)
option remember;
local a, i, j, P;
if n=1 then
8
else
for a from procname(n-1)+1 do
P:=[];
if NumberTheory:-Omega(a)=3 then
for i in ifactors(a)[2] do
j:=0;
while j<i[2] do
P:=[op(P), i[1]];
j:=j+1;
od
od;
if P[1]+P[2]>P[3] then
return a
fi
fi
od
fi
end proc;
seq(A379033(n), n=1..51);
CROSSREFS
KEYWORD
nonn,new
AUTHOR
Felix Huber, Dec 24 2024
STATUS
approved