OFFSET
0,2
COMMENTS
Given two unit 4 dimensional hyperspheres whose centers are a unit distance apart, this value is the fraction of their surface that lies within the other. 4 dimensions is the smallest number for this not to be a rational number.
The general formula in n dimensions is given by (1/2) * I(3/4; (n-1)/2, 1/2) where I(x; a, b) is the regularized incomplete beta function.
Let f(n) = 1/2 * I(3/4; (n-1)/2, 1/2).
f(1) = 1/2
f(2) = 1/3
f(3) = 1/4
f(4) = 1/3 - sqrt(3)/(4*Pi)
f(5) = 5/32
f(6) = 1/3 - 3*sqrt(3)/(8*Pi)
Odd n give a fraction with a denominator being a power of 2 and even n give 1/3 - k*sqrt(3)/Pi where k is a rational number (see SeqFans Mailing List Thread).
As n -> infinity, f(n) -> 0. This lack of overlap is a demonstration of why higher dimensional spheres are referred to as being 'spiky', despite being entirely convex.
The fact that f(n) -> 0 as n -> oo implies that the sequence of rationals k converges to Pi/sqrt(3^3) = A073010. - M. F. Hasler, Oct 31 2024
LINKS
Joshua Searle and others, Overlapping Hyperspheres, discussion in SeqFan mailing list, Oct 29, 2024.
Wikipedia, Spherical Cap
FORMULA
Equals (1/2) * I(3/4; 3/2, 1/2).
EXAMPLE
0.1955011094778853209555017087550909729839867132416731701334918282605757574660158846...
MATHEMATICA
RealDigits[1/3 - Sqrt[3]/(4*Pi), 10, 120][[1]] (* Amiram Eldar, Oct 31 2024 *)
PROG
(Python)
from sympy import S, betainc_regularized, hyper
f = lambda n: betainc_regularized(S(n-1)/2, S(1)/2, 0, S(3)/4).rewrite(hyper).gammasimp().simplify().expand()/2
f(4).n(99) # decimal expansion
[int(d) for d in str(_)[2:-1]] # digits, omitting "0." and last (could be rounded)
# M. F. Hasler, Oct 31 2024
(PARI) A377522_upto(n)={localprec(n+++9); digits(10^n*(4/3-sqrt(3)/Pi)\4)} \\ M. F. Hasler, Oct 31 2024
CROSSREFS
KEYWORD
AUTHOR
Joshua Searle, Oct 30 2024
STATUS
approved