In how many ways can we pick three different numbers out of the group $$ 1,2,3,\ldots,100 $$ such that the largest number is larger than the product of the two smaller ones? (The order in which we pick the numbers does not matter.
I tried to use casework on the two smaller numbers, but the cases got out of control Any solutions? Thanks

I used the same idea as John constructed a short macro to calculate the number of combinations which only took a second to calculate.
Basically for any $x_1 \times x_2 < 100$, the number of possibilities for $x_3$ equals $100-(x_1 \times x_2)$.
In this code, suppose the variable i is the lowest picked value and j is the 2nd lowest picked value.