public static BigInteger Pow(BigInteger a, int exponent) { BigInteger result = a.Pow(exponent); result.SetEven(); return result; }