Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
x = :math.pow(3, 247)
		
		
	x :: Integer
x = 3^247
		
		
	let x = 3n ** 247n;
		
		
	(setf x (expt 3 247))
		
		
	$x = gmp_pow(3, 247);
echo gmp_strval($x);
		
		
	x = 3 ** 247
		
		
	def f(n):
    if not n:
        return 1
    return 3 * f(n - 1)
x = f(247)
		
		
	x = 3 ** 247
		
		
	(define x (expt 3 247))