OFFSET
1,1
COMMENTS
From Robert Israel, Apr 12 2021: (Start)
All terms are composite.
Conjecture: Consists of all composite numbers except 4, 8, 9, and 25. (End)
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
10 is in the sequence since 10 = 1+4+5 = 2+3+5, (1+4+5) | 1*4*5 and (2+3+5) | 2*3*5.
12 is in the sequence since 12 = 1+3+8 = 2+4+6 = 3+4+5, (1+3+8) | 1*3*8, (2+4+6) | 2*4*6 and (3+4+5) | 3*4*5.
MAPLE
filter:= proc(n) local x, y, z;
if isprime(n) then return false fi;
x:= min(numtheory:-factorset(n));
y:= n/x;
z:= n - x - y;
if z > 0 and nops({x, y, z}) = 3 then return true fi;
for x from 1 to n/3 do
for y from x+1 while x+2*y+1 <= n do
z:= n-x-y;
if x*y*z mod n = 0 then return true fi;
od od;
false
end proc:
select(filter, [$1..100]); # Robert Israel, Apr 12 2021
MATHEMATICA
Table[If[Sum[Sum[(1 - KroneckerDelta[i, j]) (1 - KroneckerDelta[n - j, 2 i]) (1 - KroneckerDelta[n - i, 2 j]) (1 - Ceiling[i*j*(n - i - j)/n] + Floor[i*j*(n - i - j)/n]), {i, j, Floor[(n - j)/2]}], {j, Floor[n/3]}] > 0, n, {}], {n, 100}] // Flatten
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Apr 11 2021
STATUS
approved