OFFSET
1,3
COMMENTS
The condition that there is no isosceles triangle is equivalent to: for each point, the distances to other points are all different.
LINKS
Benoît Daene, Python code to compute all minimal solutions
Benoît Daene, All minimal solutions for n=1..12
digiSchool, Points acceptables (in French).
EXAMPLE
a( 1)= 0, {(0, 0)}
a( 2)= 1, {(0, 0), (1, 0)}
a( 3)= 5, {(0, 0), (0, 1), (1, 2)}
a( 4)= 5, {(0, 0), (0, 1), (2, 0), (2, 1)}
a( 5)=13, {(0, 0), (0, 1), (1, 2), (1, 3), (3, 0)}
a( 6)=17, {(0, 1), (1, 0), (2, 3), (2, 4), (3, 2), (4, 2)}
a( 7)=25, {(0, 1), (0, 2), (1, 0), (1, 5), (2, 4), (3, 2), (3, 4)}
a( 8)=25, {(0, 2), (1, 1), (2, 1), (3, 0), (3, 5), (4, 3), (4, 4), (5, 2)}
a( 9)=37, {(0, 1), (0, 4), (1, 1), (1, 5), (2, 0), (3, 0), (3, 6), (4, 5), (5, 2)}
a(10)=41, {(0, 1), (0, 4), (1, 1), (2, 0), (2, 6), (3, 0), (3, 6), (4, 5), (5, 2), (5, 5)}
a(11)=52, {(0, 1), (1, 1), (2, 0), (3, 0), (3, 6), (3, 7), (5, 2), (5, 5), (5, 6), (6, 2), (7, 1)}
a(12)=53, {(0, 2), (0, 4), (1, 1), (2, 1), (2, 6), (3, 0), (5, 0), (5, 7), (6, 5), (6, 6), (7, 2), (7, 4)}
PROG
(Python) # see Links
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Benoît Daene, Aug 26 2025
STATUS
approved
