OFFSET
0,13
COMMENTS
Moves are restricted to be (-2,1) or (1,-2), and end when either coordinate is < 2.
LINKS
M. Bousquet-Mélou and M. Petkovsek, Linear recurrences with constant coefficients: the multivariate case, Preprint 687, Volume 38 (2000), Preprint Series of the Institute of Mathematics, Physics and Mechanics of Ljubljana.
M. Bousquet-Mélou and M. Petkovsek, Walks confined in a quadrant are not always D-finite, arXiv:math/0211432 [math.CO], 2002.
EXAMPLE
The table starts:
1 1 1 1 1 1
1 1 1 1 1 1
1 1 2 2 3 3
1 1 2 2 4 5
1 1 3 4 6 10
1 1 3 5 10 14
MAPLE
T:=proc(n, k) if n=0 or n=1 or k=0 or k=1 then 1 else T(n+1, k-2)+T(n-2, k+1) fi end: seq(seq(T(n, s-n), n=0..s), s=0..15);
MATHEMATICA
t[n_, k_] := t[n, k] = If[ n == 0 || n == 1 || k == 0 || k == 1, 1, t[n + 1, k - 2] + t[n - 2, k + 1]]; Table[t[n, s - n], {s, 0, 13}, {n, 0, s}] // Flatten (* Jean-François Alcover, Jan 29 2013, translated from Maple *)
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Nov 05 2000
EXTENSIONS
More terms from Emeric Deutsch, May 23 2004
Definition clarified by Franklin T. Adams-Watters, Jun 12 2014
STATUS
approved