A lumberjack has $4n + 110$ logs in a pile consisting of n layers. Each layer has two more logs than the layer directly above it. If the top layer has six logs, how many layers are there? Write the steps to calculate the equation for the problem and state the number of layers.
It's given that the top layer has 6 logs and each layer below that gains 2 logs per layer.
1st layer: 6
2nd layer: 6 + 1(2) = 6 + 2 = 8
3rd layer: 6 + 2(2) = 6 + 4 = 10
4th layer: 6 + 3(2) = 6 + 6 = 12
5th layer : 6 + 4(2) = 6 + 8 = 14
and so on
the nth layer: $a_n = 6 + 2(n-1)$
1st term 6 and common difference 2 with n terms
1st term: $a_n = 6$
last term: $a_n = 6 + 2n + 4$
$S_n = (n/2)(a_1 + a_n)$
$$4n + 110 = (n/2)(6 + 6 + 2(n-1))$$
Can anyone help break this equation down to solve for n?