For bases $a\in(1,e^{1/e})$, ${}^na=a^{({}^{n-1}a)}=a^{a^{a^{.^{.^{.^a}}}}}$ converges to a value denoted as ${}^\infty a$. By observing the convergence rate of this sequence, we can derive the limit:
$$\lim_{n\to\infty}\frac{{}^\infty a-{}^{n+x}a}{{}^\infty a-{}^na}=[\ln({}^\infty a)]^x$$
By supposing we seek a continuous version of tetration that satisfies this, and rearranging so that ${}^xa$ is solved for, we derive:
$${}^xa=\lim_{n\to\infty}\log_a^{\circ n}({}^\infty a-({}^\infty a-{}^na)[\ln({}^\infty a)]^x)\tag1$$
where $\log^{\circ n}$ is the logarithm applied $n$ times. As an example, with $n=10$, I obtained the following plot:
which looks really nice. Then looking at $n=15$, I get this:
which raises concern. For $a$ close to $1$ and $n=10$, I get
It would seem to work well for small $n$ and large $a$, but then for larger $n$ or smaller $a$, it becomes unstable. As far as I can tell, this issue is due to the amount of numerical precision required while evaluating $(1)$, especially when the base is closer to $1$.
So the first question is whether this is due to numerical precision, or if it's simply because $(1)$ does not converge.
If it's the former, then is there any way to circumvent this without brute forcing with more precision? And how should I pick the values of $n$ for a given base $a$ (and $x$)?
If it's the latter, then does it converge anywhere?
Code for computing $(1)$, showing the following for $a=\sqrt2$ and $x=1.5$:
n 1.4142135623730^^n
--------------------------
0 1.42291711861386
1 1.4657586018199498
2 1.4910645646490854
3 1.5069501895748705
4 1.5172760309843982
5 1.5241342747726574
6 1.528753204049527
7 1.5318927292918296
8 1.5340399138955585
9 1.5355145848360043
10 1.5365302824374432
...
45 1.538805432574356
46 1.5388054445894592
47 1.5388054519338499
48 1.5388054652284342
49 1.5388054823911386
50 1.538805506512146
...
90 1.7233534923554696
91 1.755592017472159
92 2.0000000000000004
93 2.000000000000001
94 2.000000000000001
Showing the apparent value of $^{1.5}\sqrt2\simeq1.5388$ followed by divergence.