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.

User: Hugo M. Nielsen

Hugo M. Nielsen's wiki page.

Hugo M. Nielsen has authored 1 sequences.

A374013 n-queens completion threshold. The maximum number such that placing a(n) or fewer mutually non-attacking queens on an n X n chessboard is always completeable to a full n-queen configuration.

Original entry on oeis.org

0, 1, 0, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4
Offset: 4

Author

Hugo M. Nielsen, Jun 25 2024

Keywords

Comments

For n large enough, n/60 <= a(n) <= 0.241*n [Glock et al.].

Examples

			There are 2 solutions to the 4-queens problem:
  . Q . .
  . . . Q
  Q . . .
  . . Q .
and
  . . Q .
  Q . . .
  . . . Q
  . Q . .
Neither of these has a queen in the upper left corner, so placing a queen here will definitely make the configuration non-completable, while placing no queens is completable, see the two examples.
		

Crossrefs

Cf. A000170.

Programs

  • C
    \\ see github link