I have a question.
Euler starts with this situation: $$a>1$$ $$a^w=1+kw$$
His example was this:
Let $a = 10$ , we look for the logarithm of a number which exceeds $1$ by the smallest possible amount, for instance: $$1+\frac{1}{1000000}$$ so that $$kw=\frac{1}{1000000}$$ Then:$$\log{(1+\frac{1}{1000000})}=\log{(\frac{1000001}{1000000})}=0.00000043429=w.$$
$k$ is then: $$k=2.30258$$
I don't understand what this equation $a^w=1+kw$ does mean.
The equation $a^w = 1+kw$ isn't actually valid. Rather you have $a^w = 1+kw+O(w^2)$ i.e. $a^w \approx 1+kw$ when $w$ is small. But for small $w$ the nonlinear term ($O(w^2)$) will be so small that it in practice can be neglected.
EXPLANATION
Using Mac-Laurin Series $a^w=1+wa^0 \ln(a)+\frac{w^2}{2!}a^0(\ln(a))^2+\cdots=1+w\ln(a)+O(w^2)=1+kw+O(w^2), \ k=\ln(a).$