login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A057790 Triangle read by rows: T(n,k) = number of knight's walks (n >= 0, k >= 0). 0
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 3, 2, 3, 1, 1, 1, 1, 3, 4, 4, 3, 1, 1, 1, 1, 5, 5, 6, 5, 5, 1, 1, 1, 1, 6, 7, 10, 10, 7, 6, 1, 1, 1, 1, 8, 11, 16, 14, 16, 11, 8, 1, 1, 1, 1, 12, 17, 22, 27, 27, 22, 17, 12, 1, 1, 1, 1, 18, 23, 39, 44, 44, 44, 39, 23, 18, 1, 1, 1, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,13

REFERENCES

M. Bousquet-Melou and M. Petkovsek, Linear recurrences with constant coefficients: the multivariate case, Discrete Math., 225 (2000), 51-75.

LINKS

M. Bousquet-M\'{e}lou, Linear recurrences with constant coefficients: the multivariate case

M. Bousquet-M\'elou and M. Petkovsek, Walks confined in a quadrant are not always D-finite

EXAMPLE

1; 1,1; 1,1,1; 1,1,1,1; 1,1,2,1,1; ...

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);

CROSSREFS

Sequence in context: A155050 A140356 A119963 * A052307 A067059 A049704

Adjacent sequences:  A057787 A057788 A057789 * A057791 A057792 A057793

KEYWORD

nonn,tabl,easy,nice

AUTHOR

N. J. A. Sloane (njas(AT)research.att.com), Nov 05 2000

EXTENSIONS

More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), May 23 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:31 EST 2012. Contains 205633 sequences.