A253272 Triangular array read by rows: T(h,k) = number of steps from (h,k) to (0,0), where one step is (x,y) -> (x-1, y) if x is odd or (x,y) -> (y, x/2) if x is even, except that (2,0) -> (1,0).
0, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 5, 6, 6, 7, 6, 7, 6, 6, 6, 7, 7, 7, 7, 7, 7, 6, 7, 7, 8, 7, 8, 7, 8, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 7, 8, 7, 9, 8, 9, 8, 9, 8, 9, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 7, 9, 8, 9, 8, 10, 9, 10
Offset: 1
Examples
First ten rows: 0 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 5 6 6 6 6 5 6 6 7 6 7 6 6 6 7 7 7 7 7 7 6 7 7 8 7 8 7 8 7 7 7 8 8 8 8 8 8 8 8 Row 3 counts the pairs (2,0), (1,1), (0,2), for which the paths are as shown here: (2,0) -> (1,0) -> (0,0) (2 steps) (1,1) -> (0,1) -> (1,0) -> (0,0) (3 steps) (0,2) -> (2,0) -> (1,0) -> (0,0) (3 steps)
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Comments