summaryrefslogtreecommitdiff
path: root/1322/CH5/EX5.5.b/47ex4_b.sce
blob: bbc5f5445b622e907937ff988f6c9a6687373705 (plain)
1
2
3
4
5
6
7
8
9

// 4(n+5)+3
clear;
clc;
close;
mprintf("the first five terms of the sequence are: \n");
for n=1:5
  disp(4*(n+5)+3)
 end