Computer Science, asked by neesan193, 12 hours ago

Write a python program to sum the series 1²/1 + 2^2/2 + 3^2/3 +...+n^2/n.​

Answers

Answered by adityadupare345
0

Answer:

Sum = (Number * (Number + 1) * (2 * Number + 1 )) / 6

Sum = (6 * (6 + 1) * (2 * 6 +1)) / 6 => (6 * 7 * 13) / 6

and the output, Sum = 91

Explanation:

i hope it's helpful to you if you liked it mark my answer as brainliest

Similar questions