MathDB
Values for the area of this parallelogram [Slovenia 2010]

Source:

November 16, 2010
geometryparallelogramtrapezoidsymmetrycombinatorics proposedcombinatorics

Problem Statement

Let ABCABC be an equilateral triangle with the side of 2020 units. Amir divides this triangle into 400400 smaller equilateral triangles with the sides of 11 unit. Reza then picks 44 of the vertices of these smaller triangles. The vertices lie inside the triangle ABCABC and form a parallelogram with sides parallel to the sides of the triangle ABC.ABC. There are exactly 4646 smaller triangles that have at least one point in common with the sides of this parallelogram. Find all possible values for the area of this parallelogram.
[asy] unitsize(150); defaultpen(linewidth(0.7)); int n = 20; /* # of vertical lines, including BC */ pair A = (0,0), B = dir(-30), C = dir(30); draw(A--B--C--cycle,linewidth(1)); dot(A,UnFill(0)); dot(B,UnFill(0)); dot(C,UnFill(0)); label("AA",A,W); label("CC",C,NE); label("BB",B,SE); for(int i = 1; i < n; ++i) { draw((i*A+(n-i)*B)/n--(i*A+(n-i)*C)/n); draw((i*B+(n-i)*A)/n--(i*B+(n-i)*C)/n); draw((i*C+(n-i)*A)/n--(i*C+(n-i)*B)/n); }[/asy]
[Thanks azjps for drawing the diagram.]
[hide="Note"]Note: Vid changed to Amir, and Eva change to Reza!