When the sum of all the positive even numbers is 420, find the largest even number in the sequence.

if there are n even numbers (starting at 2, and not skipping any), then

n/2 (2*2+(n-1)*2) = 420
n = 20

So, the largest is 40