Given a static (not variable) range of integers, such as One Through Five, I have this equation.
$b^1$ + $b^2$ + $b^3$ + $b^4$ + $b^5$
Is there a shorter way to write that, knowing that this is not a variable set of exponents, but only with this static range?
Also, without using Sigma if possible, as I can see where n is from 1 to 5, but trying to avoid that.
Also, without using functions f(), if possible.
I'm imagining something, though this is probably wrong, like $3^{5!}$, or $3^{1 to 5}$ though that notation doesn't really exist I believe.