blob: 654e04a137cad53e77d374590a1e37dc4a03be19 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//7th term of the series 3,6,12,....
clear;
clc;
close;
//in the series r=2, so using the formula
// nth term=a*r^(n-1)
a=3;n=7;//given data
term7=3*(2)^(7-1);
mprintf("\n the seventh term of the series is %i",term7)
|