hello
i have an algorithm that i try to figure out it's complexity

for x = 1 to n/2
for y = x to n-x
for w = x to y
do (operation)

is it some kind of a familiar series?
how do i analyse it?
thanks
mike