A282574 The final position on a staircase of n steps during the following routine: Take steps of length 1 up a staircase until you can't step any further, then take steps of length 2 down until you can't step any further, and so on.
1, 0, 1, 3, 5, 2, 3, 0, 1, 7, 9, 2, 3, 0, 1, 6, 11, 17, 1, 15, 19, 6, 9, 23, 1, 17, 19, 27, 11, 23, 25, 12, 13, 4, 5, 19, 27, 14, 19, 31, 39, 10, 13, 6, 7, 22, 23, 14, 15, 0, 5, 31, 39, 53, 1, 47, 49, 18, 21, 59, 3, 57, 1, 6, 17, 49, 57, 39, 43, 69, 9, 47, 51
Offset: 1
Keywords
Examples
For n = 4: step size 1: 0 -> 1 -> 2 -> 3 -> 4 (four steps); step size 2: 4 -> 2 -> 0 (two steps); step size 3: 0 -> 3 (one step). Because the walker cannot take four steps down, a(4) = 3 (the final position).
Links
- Peter Kagey, Table of n, a(n) for n = 1..10000
Comments