OFFSET
0,3
COMMENTS
It is reasonable to assume that this sequence describes the Euclidean length of the shortest tree joining the 2^n vertices of the hypercube {0,1}^n since David E. Speyer and Peter Taylor have constructively provided the upper bound sqrt(3)*(2^(n - 1) - 1) + 1, for any n >= 2, on the total Euclidean length of any tree joining all the 2^n vertices of the unit cube. Furthermore, professor Speyer has proved that the optimal solution must be a Steiner tree whose interior vertices are all trivalent and whose angles are mandatorily equal to Pi/3 radians.
REFERENCES
F. K. Hwang, D. S. Richards, and P. Winter, The Steiner tree problem, Annals of Discrete Mathematics, Amsterdam: North-Holland, 53 (1992).
LINKS
Robert Bridges, Minimal Steiner Trees for Three Dimensional Networks, Mathematical Gazette, Vol. 78, July 1994, Number 482, pp. 157-162.
Fan Chung, Martin Gardner, and Ron Graham, Steiner trees on a checkboard, Mathematics Magazine, Vol. 62, April 1989, pp. 83-96.
MathOverflow, Joining the 2^k points of {0,1}^k with the shortest tree.
FORMULA
a(n) = floor(sqrt(3)*(2^(n - 1) - 1) + 1).
MATHEMATICA
a[n_]:= Floor[Sqrt[3]*(2^(n - 1) - 1) + 1]; Array[a, 34, 0] (* Stefano Spezia, Jun 29 2024 *)
PROG
(Python)
from math import isqrt
def A374148(n): return 1+isqrt(3*((1<<n-1)-1)**2) if n else 0 # Chai Wah Wu, Jun 30 2024
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Marco Ripà, Jun 28 2024
STATUS
approved