Normally a variance is calculated towards the mean ($\bar X_n$), so it looks like this:
$$ o^2_n = \frac{\sum_{i = 1} ^ n (X_i - \bar X_n)^2}{n} $$
What if we replace that mean by zero (even though the mean is not zero). What do you call this?
$$ o^2_n = \frac{\sum_{i = 1} ^ n (X_i)^2}{n} $$
Context: This formula is very useful for load balancing tasks as fairly as possible across workers/machines. The resulting number is higher if it is less fair. Unlike normal variance (or std dev), fairness focuses on the heaviest loaded worker/machine first.
And what do you call the square root of that formula?
I've seen it called the mean square. I don't know another name for it. Its square root is called the root mean square, or root-mean-square.
PS: Following "lulu" 's comment, it is of course also called the second moment. I think I missed that because I think of "second moment" as meaning $\operatorname{E}(X^2),$ and "second sample moment" as meaning $\sum_{i=1}^n X_i^2/n,$ where $X_1,\ldots,X_n$ is a sample rather than the whole population.