write a program to find the sum of number in the following series
1 4 10 19 34 52 73 100....N
Answers
Answered by
0
Answer:
Javascript program :
Explanation:
N = last term;
n = 1;
m = 3;
while( n <= N ){
n+=m;
m+=3;
}
alert(n);
Similar questions
World Languages,
2 months ago
English,
2 months ago
English,
5 months ago
World Languages,
5 months ago
Chemistry,
11 months ago
Math,
11 months ago