cachedSquareOfQuintillion

fun cachedSquareOfQuintillion(n: Int): A_Number

Answer the nth successive square of a (U.S.) quintillion, which will be (10^18)^(2^n). N must be ≥ 0. Cache this number for performance.

Return

The value (10^18)^(2^n).

Parameters

n

The number of times to successively square a quintillion.