تنظیم دقت محاسباتی mpmath.mp.dps = 2000
a = mpmath.mpf('3.840375671501416')
def la_mega(n): result = a for _ in range(n): result = mpmath.power(10, result * a) return result
for i in range(4): print(f"LaMega({i}):", la_mega(i)) \end{verbatim}