There is an arrangement:
1
2 3 4
5 6 7 8 9
10 11 12 13 14 15 16
. . .
. . .
N rows
How can I find the sum of numbers in the nth row?
I tried the following: 1st row has 1 number 2nd row has 3 numbers 3rd row has 5 and so on.. so this is an AP
a(n) = 1+(n-1)2 = 2n - 1, this gives number of elements in nth row. But I can't find any way to proceed.
We have that the sum in the $n$-th row is $$\sum_{k=(n-1)^2+1}^{n^2}k=\sum_{k=1}^{n^2}k-\sum_{k=1}^{(n-1)^2}k=\frac{n^2(n^2+1)}{2}-\frac{(n-1)^2((n-1)^2+1)}{2}\\=(2n-1)(n^2-n+1).$$
P.S. Alternatively you can also multiply the number of elements in that row, $2n-1$, by the average of the symmetric numbers (which is constant), $(n^2+(n-1)^2+1)/2=(n^2-n+1)$.