Sorry in advance I didn't know where to ask this question. What is it called when a number $x$ grows at a rate of $x^2$. I don't know if I'm even asking this correctly, but see below...
As in: $2$, $4 = 2^2$, $16 = 4^2$, $256 = 16^2$, $65536 = 256^2$, etc.
This a sequence. So call the first one $a_0$, then the next one $a_1$ and so on. From the ones you listed
$$ a_0=2=2^1=2^{2^0}\\ a_1=4=2^2=2^{2^1}\\ a_2=16=2^4=2^{2^2}\\ a_3=256=2^8=2^{2^3}\\ a_4=65536=2^{16}=2^{2^4}\\ $$
So the pattern is
$$ a_n=2^{2^n}\\ $$
You can prove this by induction. Suppose you know this pattern holds for $a_n$, then the following:
$$ a_{n+1}=a_n^2=2^{2×2^n}=2^{2^{n+1}}\\ $$
shows it holds for $a_{n+1}$ as well. It already worked for $a_0$ through $a_4$, so together that means it holds for all n. So you can see that it grows like the exponential of an exponential. It is super-exponential (careful searching that though since others use different definitions for the same word).