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