Pascal does not implement a native "big integer" type. There are several 3rd party libraries that do so. One of them is ncalc, which defines TValue which can hold up to 2 gigabyte decimals.
use bigint;
$x = 3 ** 247;
x = 3 ** 247
externcrate num;
use num::bigint::ToBigInt;
leta = 3.to_bigint().unwrap();
letx = num::pow(a, 247);