OFFSET
0,1
LINKS
Laslo Hars, Numerical solutions of the Tammes problem for up to 60 points, Nov 2020, N=14.
O. R. Musin and A. S. Tarasov, The Tammes problem for N=14, Exp. Math. 24 (2015) 460-468.
Wikipedia, Tammes problem
EXAMPLE
0.971634742886224075941694947628...
MAPLE
Digits := 120 ;
g := proc(c, x)
2*arccot(c*tan(x/2)) ;
end proc:
f := proc(x)
local c, x1, x2, x3, x4, x5 ;
c := cos(x)/(1-cos(x)) ;
x1 := Pi-x ;
x2 := g(c, x1) ;
x3 := 2*Pi-2*x-x2 ;
x4 := g(c, x3) ;
x5 := 2*Pi-x-2*x4 ;
2*Pi-2*x-x3-g(c, x5) ;
end proc:
x := 1.2 ; y := 1.21 ;
for i from 1 to 500 do
z := (x+y)/2 ;
if f(z) > 0. then
x := z ;
else
y := z ;
end if;
cos(z)/(1-cos(z)) ;
if modp(i, 20) =0 then
arccos(%) ; evalf(%, 120) ; print(%) ;
end if;
if x > y then
break ;
end if;
end do:
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
R. J. Mathar, May 12 2025
STATUS
approved
