等差数列求和,直接用公式即可。

while True:
    try:
        n = int(input())
        print( 2*n + n*(n-1) * 3 //2)
    except:
        break