- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Sum of the first N terms of the series 2,10, 30, 68,…. in C programming
To find the sum of this series, we will first analyze this series.
The series is:
The given series is 2,10, 30, 68…
For example
For n = 6 Sum = 464
On analysis of the given series, you will see that the series is the addition of two series first one is the series of n natural numbers and the second is the cube of n natural numbers this means the series can be split as:
2, 10 , 30 ,68 = (1+13) , (2+23), (3 + 33), ( 4 + 43)
so we can write the sum of the series as :
sum = 2 + 10 + 30 + 68… = ( 1 + 2 + 3 + 4...)+( 13 + 23 + 33 + 43….)
based on this the formula for calculation of the series will also be defined as the sum of formulas of the two.
the mathematical formula for finding the sum of the above series is :
n*(n + 1)/2 + (n*(n + 1)/2)^2
Example
#include <stdio.h> int main() { int n = 6; int sum = (n*(n + 1)/2) + (n*(n+1)/2)*(n*(n+1)/2); printf("the sum of series till %d is %d", n,sum); return 0; }
Output
the sum of series till 6 is 462
Advertisements