A344845 a(n)/2 is the smallest possible area of a non-obtuse triangle with integer coordinates in the plane and with shortest side of length sqrt(A001481(n+1)).
1, 2, 4, 5, 8, 9, 10, 12, 16, 15, 18, 20, 23, 24, 28, 32, 30, 36, 34, 38, 39, 42, 49, 45, 48, 52, 55, 58, 56
Offset: 1
Examples
[a(n)]: For n = 3, i.e. A001481(n+1) = 4, a triangle with a shortest sidelength of sqrt(4) and the minimal area of 4/2 = 2 can be placed at A=(0,0), B=(2,0), and C=(0,2). Alternatively, C can be placed at (1,2) or (2,2). -> a(3) = 4. [b(n)]: For the smallest 3 minimum distances sqrt(1), sqrt(2), and sqrt(4), the following repeating patterns (X for dots, O for empty spaces) achieve the highest possible densities of 1, 1/2, and 1/4 respectively: XXXXXX OXOXOX OXOXOX XXXXXX XOXOXO OOOOOO XXXXXX OXOXOX OXOXOX XXXXXX XOXOXO OOOOOO
Links
- Jonathan F. Waldmann, A more nuanced upright triangle sequence
- Jonathan F. Waldmann, An algorithm for the upright triangle sequence
- Jonathan F. Waldmann, Proofs for the first few terms in the discrete circle packing sequence
- Jonathan F. Waldmann, More proofs for the discrete circle packing sequence
Formula
Let m := A001481(n+1).
a(n) = min{m, 2*min{area(ABC) | A, B, C in Z^2;
A = (0,0);
B = (a,b) with a >= b >= 0;
|AB| = sqrt(m);
C = (c,d) with c >= 0 or d >= c;
sqrt(m) <= |AC| < sqrt(5m/4);
sqrt(m) <= |BC| < sqrt(2m) } } (proved in "A more nuanced upright triangle sequence").
a(n) <= m.
a(n) > sqrt(3/4)*m (conjectured).
Comments