cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A337722 Maximum number of knights within an n X n chessboard, where each knight has a path off the board.

Original entry on oeis.org

1, 4, 9, 16, 24, 34, 44, 58, 73
Offset: 1

Views

Author

Nicholas Tran, Sep 17 2020

Keywords

Comments

Given an n X n chessboard, this sequence is the maximum number of knights that can be placed on the board, such that each knight has a free path to jump "off" the board without another knight moving.
An example for a(3):
XXX
XXX
XXX
Here, all knights can jump off the board via knight movement. The middle knight is not blocked by any pieces.
An example for a(5):
XXXXX
XXXXX
XX-XX
XXXXX
XXXXX
Here, a knight can occupy all spaces except the central space, where a knight would not be able to jump off the board and would not be able to jump to another free square.

Crossrefs

Cf. A337746 (bishops), A335445 (rooks).