Robotics & Artificial Intelligence
Write Python code to find the sum of the given series:
1 + (1+2) + (1+2+3) + …………… + (1+2+3+……………+n)
Related Questions
Design Python code to find and display the sum of the following series:
s = 1 + 4 + 9 + …………… + 400
Design Python code to find and display the sum of the following series:
s = (1*2) + (2*3) + …………… + (19*20)
Write Python code to find the sum of the given series:
1 + (1*2) + (1*2*3) + …………… + (1*2*3*……………*n)
Write Python code to find the sum of the given series:
S = 1! + 2! + 3! + 4! + …………… + n!
[Hint: Factorial of 5! = 5*4*3*2*1]