I don't think I am quite looking for that.
I need to find the sum of all odd integers between 1 and odd integer n.
Thus, if you need to find (3), the sum will be 4. (5), the sum will be 9. (7), the sum will be 16.
I found the formula (N+1)(N+1)/4 where n is the odd integer, but not the...