PYTHON
Using either words or mathematical set notation, describe what numbers the following list comprehension generates (note that N is meant to be an integer that the user defines, so you'll need to write down your answer in terms of N).
b = [2*m*n for n in range(N) for m in range(n+1 , n+3)]