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.

A242088 Number of edges in the convex hull of a rigorous solution to Thomson's problem for n points.

Original entry on oeis.org

0, 0, 1, 3, 6, 9, 12
Offset: 0

Views

Author

Jonathan Sondow, May 04 2014

Keywords

Comments

Thomson’s problem is to determine the stable equilibrium configuration(s) of n particles confined to the surface of a sphere and repelling each other by an inverse square force.
Rigorous solutions are known only for n <= 6 and n = 12, with a(12) = 30.
Non-rigorous solutions are given in Wikipedia for all n <= 460. The least non-monotonic pair is 63 > 60 for n = 23 and 24, respectively.

Examples

			For n = 0 or 1 points, the convex hull is empty or a point, so there are no edges and a(0) = a(1) = 0.
		

Crossrefs

Formula

a(n) <= n(n-1)/2 = (n choose 2).
a(n) <= 3*n-6 = A008585(n-2) for n >= 3, since a solution to Thomson's problem gives a planar graph, which has 3*n-6 edges if it is maximal (see A008486 comments). - Jonathan Sondow, Mar 03 2018 answering a question by Joseph Wheat.