#include<stdio.h>
#include<conio.h>
void main ()
{
float a,r,ans,pow_r=1;
int i;
clrscr();
printf("Enter first Term: ");
scanf("%f",&a);
printf("Enter Common Ratio: ");
scanf("%f",&r);
for(i=1;i<=25;i++)
{
ans=pow_r*a;
printf("\t%f",ans);
pow_r=r*pow_r;
}
getch();
}
Chat with our AI personalities
Suppose the first term is a, the second is a+r and the nth is a+(n-1)r. Then the sum of the first five = 5a + 10r = 85 and the sum of the first six = 6a + 15r = 123 Solving these simultaneous equations, a = 3 and r = 7 So the first four terms are: 3, 10, 17 and 24
It is 58465.
An arithmetic series is the sum of the terms in an arithmetic progression.
The nth term of the series is [ 4/2(n-1) ].
The sum of 50 consecutive odd integers is equal to: (First Term + Last Term) * (The number of Terms)/2 or in this case, more specifically: (2 * First Term + 98) * 25 If you meant 1+3+5+7+...+99, then the sum is 2500.