I have to do reproduce a power regression but I don't have any experience in procedures like that.
I read a little bit about power fit/power regression and that a formula like $y = ax^b$ is used for this. But in the formula which was used in this calculation, there is a constant $C$ included.
A formula $y = A \times (r/t)^B + C$ is given, where $r$ are the value in the following table and $t$ is $-51$.
The input data are:
y r
0.25 -41
0.5 -43
1 -49
2 -65
3 -58
4 -57
5 -67
6 -67
7 -77
8 -70
9 -69
10 -75
12 -72
14 -72
16 -78
18 -83
20 -81
25 -81
30 -75
40 -83
Now, the coefficients or constants $A, B, C$ was calculated with power regression and the result is:
Intercept: 0.1820634
Multiplier: 0.8229884
Power: 6.6525179
Unfortunately, there is no hint how they result in this numbers.
I tried to do the power regression in excel but it also gives me only a formula $y = ax^b$.
Can anyone give some hints how to reproduce this?


Let us consider the model $$y=Ax^B+C$$ for which you want the best estimates of parameters $A,B,C$ in the least square sense based on $n$ data points$(x_i,y_i)$.
The model is nonlinear so, at a point, nonlinear regression will be required; but this implies to have good (or at least reasonable) starting values.
If there was no $C$, a logarithmic transform $$\log(y)=\alpha+B \log(x)$$ will allow to get $A=e^\alpha$ and $B$.
Here, the problem is more delicate but you can notice that, if $B$ is given a value, then parameters $A$ and $C$ are easily obtained from a linear regression $$y=A z +C$$ with $z_i=x_i^B$.
So, define you sum of squares as a function of $B$ $$SSQ(B)=\sum_{i=1}^n(A x_i^B+C-y_i)^2$$ and run the linear regression for different values of $B$ until you locate a minimum. For this temporaly "best" value of $B$, you know the corresponding $A$ and $C$; from here, you can start the nonlinear regression work.
Let us do it using your data. For the preliminary search step, the results are $$\left( \begin{array}{cc} B & SSQ \\ 1 & 955.644 \\ 2 & 851.165 \\ 3 & 770.371 \\ 4 & 714.426 \\ 5 & 680.846 \\ 6 & 665.380 \\ 7 & 663.513 \\ 8 & 671.277 \\ 9 & 685.527 \end{array} \right)$$
which shows a rather flat minimum around $B=7$; for this value of $B$, we have from the linear regression $A=0.902384$, $C=0.55644$.
Now, we can start the nonlinear regression using the above numbers as estimates. We end with $$y=1.07393 x^{6.65252}+0.182063$$ to which corresponds $SSQ=662.884$ which is effectively lower than any value in the above table. You should notice that my results do not coincide with your for the multiplier.
Looking at the confidence interval is very interesting $$\begin{array}{clclclclc} \text{} & \text{Estimate} & \text{Standard Error} & \text{Confidence Interval} \\ A & 1.07393 & 1.48505 & \{-2.07424,4.2221\} \\ B & 6.65252 & 2.73792 & \{0.84839,12.4567\} \\ C & 0.18206 & 3.87194 & \{-8.02609,8.39021\} \\ \end{array}$$
The above table shows really large standard errors on the parameters and huge confidence intervals.