Problem 49803. Compute expulsions from the Kimberling shuffle
The Kimberling shuffle uses a semi-infinite array of numbers in which the first row is simply the numbers 1, 2, 3, 4, 5,… Subsequent rows are generated by shuffling the previous row: the first number is the number to the right of the main diagonal of the previous row, the second is the number to the left of the main diagonal, the third is the number two slots to the right of the main diagonal, etc. When numbers run out on the left of the main diagonal, the rest of the numbers are the remaining numbers of the previous row--except for the number on the main diagonal of the previous row, which is expelled. The first few rows of the array are
1 2 3 4 5 6 7 8 9 10...
2 3 4 5 6 7 8 9 10 11...
4 2 5 6 7 8 9 10 11 12...
6 2 7 4 8 9 10 11 12 13...
8 7 9 2 10 6 11 12 13 14....
Write a function to determine the row after which the input number is expelled. For example, because 5 appears on the main diagonal of row 3, your function should return 3. An optional challenge is to determine whether all numbers are eventually expelled from the array.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers9
Suggested Problems
-
Remove all the words that end with "ain"
2297 Solvers
-
340 Solvers
-
Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
222 Solvers
-
Integer Sequence - II : New Fibonacci
491 Solvers
-
Pattern Recognition 1 - Known Unit Length
57 Solvers
More from this Author279
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!