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.

A248866 Discrete Heilbronn Triangle Problem: a(n) is twice the maximal area of the smallest triangle defined by three vertices that are a subset of n points on an n X n square lattice.

Original entry on oeis.org

4, 9, 6, 6, 5, 6, 5, 6, 6, 6, 6
Offset: 3

Views

Author

Gordon Hamilton, Mar 04 2015

Keywords

Comments

For n points in an n X n square, find the three points that make the triangle with minimal area. a(n) is double the maximal area of this triangle.
It is conjectured that the sequence has an infinite repetition of only two integers.

Examples

			a(3) = 4 because 3 points can be chosen so the minimal triangle has area 2:
.x.
...
x.x
a(6) = 6 because 3 points can be chosen so the minimal triangle has area 3:
..x..x
......
x.....
.....x
......
x..x..
a(8) is greater than or equal to 4 because of this non-optimal arrangement:
.....x.x
........
x.x.....
........
........
x.x.....
........
.....x.x
a(8) = 6 because 3 points can be chosen so the minimal triangle has area 3:
..x..x..
........
x......x
........
........
x......x
........
..x..x..
		

Extensions

a(5), a(7) and a(9) corrected and a(10)-a(13) added by Hiroaki Yamanouchi, Mar 09 2015