let me start by saying that my formatting may be way off, but it's the best I can do, and has little to do with the question, and I will make sure I am as clear as humanly possible, including showing all my work
So I was playing with squares and stuff, I found that I could calculate out every successive perfect square with: $$\sum_{n=0}^{x-1} (2n+1) = x^2$$ where $$ 0 \le n\le(x-1)|_{||}| 1\le(n+1)\le x$$
For example: $5^2=\sum_{n=0}^4(2n+1)=1+3+5+7+9=25$
and then found through trial and error that I could also calculate out successive cubes with: $$ x^3=\sum_{n=0}^{x-1}(3n^2+3n+1) $$ with the same rules for n.
For example: $5^3=\sum_{n=0}^4 (3n^2+3n+1)=1+7+19+37+61=125$
Then I discovered that the cubic formula can be factored so that: $$x^3=\biggr(\sum_{n=0}^{x-1}\bigr((2n+1)*(n+1)\big)\biggr) $$
I noticed each even power can be represented by: $x^{m_{even}}=\biggr(\sum_{n=0}^{x-1}(2n+1)\biggr)^{\frac m 2}$
While odd powers can be represented with: $x^{m_{odd}}=\biggr(\sum_{n=0}^{x-1}(2n+1)\biggr)^{\frac{m-1} 2}*(n+1)$
where $(n+1)=x$ , but only the final term is replaced with $x$.
Which eventually lead me to an interesting relation (at least to me): $$x^m=\bigg(\sum_{n=0}^{x-1}(2n+1)\bigg)^{\frac {m-3} 2}*\bigg(\sum_{n=0}^{x-1}(3n^2+3n+1)\bigg)$$
I get that I'm essentially just multiplying squares and cubes together and essentially saying that: $$x^m=\big((x^2)^{\frac {m-3} 2}\big)*x^3$$ and all the math works out to give you: $$x^{m-3}=x^{m-3}$$ However, I want to know if this is something unique, or are there many other ways to represent $x^m$ than what I've found? Is there anything useful somebody could do with something like this, or is it only good for looking cool?
p.s. Sorry if what I tried to convey didn't make any sense, I'm not familiar with how I'm supposed to phrase things in math.