Write a python program to sum the series 1²/1 + 2^2/2 + 3^2/3 +...+n^2/n.
Answers
Answered by
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
Computer Science,
6 hours ago
Biology,
6 hours ago
Math,
6 hours ago
Environmental Sciences,
12 hours ago
Chemistry,
8 months ago
Hindi,
8 months ago