Have seen the below notation (How to calculate number of triangles and points after dividing a triangle n times?) and need to break it down into plain english so to speak. This just so I can catch up.
$$ P(n) = 3 + \sum_{k=1}^{n} 3^n$$
The capital sigma is for sum but then there is this $n$ above and $k=1$ below. If done with it what is needed it is propably multiplied by 3 to the power of $n$. Think this would be added to the 3 and that together would be $P(n)$
What P stands for in $P(n)$ unknonw to me. What the parenthesis are doing, don't know either.
This is a typo. It should probably be $P(n)=3+\sum_{k=1}^n 3^k$. $P$ is just some function, a way of defining various numbers, one for each number $n$. The parentheses just indicate that $n$ is what we're associating to $P$. So for instance the number $P(2)$ is $3+\sum_{k=1}^2 3^k=3+3+3^2=15$. But this explanation might not be clear: if you don't know what the parentheses are doing then you must not be familiar with the concept of a function, which is a bit tricky.