Euler was the one to prove that all even perfect numbers are of the form
$$2^{n-1} ( 2^n - 1 )$$
This is known as the Euclid-Euler Theorem, and says that we just have to prove that $2^n-1$ is prime. Your number is
$$2^{30} ( 2^{31} - 1 )$$
Which Euler got by just plugging integer $n$ into the equation above. Now, we have that
$$2^{31}-1=2\,147\,483\,647$$
is small enough to be checked for primality by hand. Euler did this by utilizing modular properties of the Mersenne Primes, as @Chappers and others note in the comments above. In essence Euler lowered the number of cases to check considerably by noting that if $2^{31}-1$ was composite with divisor $p$ then either $p \equiv 1 \pmod {248}$ or $p \equiv 63 \pmod {248}$