OFFSET
1,1
COMMENTS
At least 3 non-collinear points to form a two-dimensional shape (a polygon) with a nonzero area are needed.
According to Pick's Theorem, the area A of any integral polygon is determined by the formula A = I - 1 + B/2 where I is the number of integer points strictly inside the polygon and B is the number of integer points on the boundary. Thus the minimal area of the convex hull of an integer k in this sequence is 1/2.
Empirically: if A(k) is not an integer, then A(k) < k/36. A(k) denotes the area of the convex hull (according to the described procedure) for an integer k.
EXAMPLE
For k = 90: k = 2^1*3^2*5^1, the area of the convex hull of the planar coordinates (2, 2), (3, 2), (5, 1) is 3/2 = 1.5 thus k = 90 is a term.
PROG
(Python)
from itertools import count, islice
from sympy import factorint
from sympy.geometry import convex_hull
def A396647_gen(startvalue=2): # generator of terms >= startvalue
for k in count(max(startvalue, 2)):
p = convex_hull(*factorint(k).items())
if hasattr(p, 'area') and not p.area.is_integer:
yield int(k)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ctibor O. Zizka, Jun 01 2026
STATUS
approved
