Ask a New Question
Search
Write a program to find the sum of the series: 1/12+1/22+1/32+…..1/n2.
1 answer
s = 0
for i = 1 to n
s = s + 1/(10*i+2)
next i
adapt to the language of your choice. Beware integer division.
Ask a New Question
or
answer this question
.
Similar Questions
write a program to print fibonaaci series like 2,1,3,4,7,11,18 up to 10th term using function...end function
I did it using
1 answer
Consider the infinite geometric series ∑∞n=1−4(13)n−1
. In this image, the lower limit of the summation notation is "n =
2 answers
the sum of the first n terms of an arithmetic series is 2n(10-n)
a.) what is the first term of the series b.) what is the common
1 answer
Consider the infinite geometric series
∑^(∞)_(n=1) −4(1/3)^n−1 . In this image, the lower limit of the summation notation
2 answers
more similar questions