BC86 牛牛学数列4

思路:

step1:每一项都是等差数列求和;累加计算;

代码如下:

n = int(input())
i = 1
c = 0
while i <= n:
    c += (1+i)*i/2
    i += 1
print(int(c))