Consider the integer number sequence N (1 to infinity).
After each iteration, take out the (k+1)th elements; where k is the number of iteration.
you've to find the nth number in the remaining sequence after k-th iteration.
- N= 1 2 3 4 5 6 7 8 9 10 11 12 ...
- for k=1, N becomes --- 1, 3, 5, 7, 9, 11, 13, 15, 17, …
- for k=2, N becomes --- 1, 3, 7, 9, 13, 15, 19, 21, 25, …
- so for [k=2,n=8], output should be 21.
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers14
Suggested Problems
-
Find the sum of all the numbers of the input vector
54040 Solvers
-
Back to basics 8 - Matrix Diagonals
966 Solvers
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
559 Solvers
-
Put Two 1D matrices into one 1D matrix
142 Solvers
-
Sum the 'edge' values of a matrix
400 Solvers
More from this Author174
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!