Read a positive integer N and calculate the first N terms of
Read a positive integer N and calculate the first N terms of a
Solution
1.start
2.Read the number N (process)
3.Assign the value of x_0 = 1
4. print the value of \"x_0\"
5. i= 1;
6. while(i<=N)
7. x_i = 1 + x_(i-1)^2;
8. print x_i;
