OFFSET
1,3
COMMENTS
If we enumerate the squares in the 3 X n board like this:
------------------------------------
| 1 | 4 | 7 | 10 | 13 | ... | 3n-2 |
------------------------------------
| 2 | 5 | 8 | 11 | 14 | ... | 3n-1 |
------------------------------------
| 3 | 6 | 9 | 12 | 15 | ... | 3n |
------------------------------------
then a(n) is the number of self-avoiding knight's paths on such a board from square 3 to square 3n.
EXAMPLE
For n = 4 we have exactly 8 self-avoiding paths starting at square 3 and ending at square 12:
3, 4, 9, 10, 5, 12;
3, 4, 9, 2, 7, 12;
3, 8, 1, 6, 7, 12;
3, 4, 11, 6, 7, 12;
3, 8, 1, 6, 11, 4, 9, 2, 7, 12;
3, 4, 11, 6, 7, 2, 9, 10, 5, 12;
3, 8, 1, 6, 7, 2, 9, 10, 5, 12;
3, 8, 1, 6, 11, 4, 9, 10, 5, 12;
CROSSREFS
KEYWORD
nonn,walk
AUTHOR
Andrzej Kukla, Aug 29 2021
EXTENSIONS
a(8)-a(15) from Pontus von Brömssen, Aug 30 2021
Terms a(16) and beyond from Andrew Howroyd, Nov 19 2021
STATUS
approved