OFFSET
1,2
REFERENCES
Howard Anton, Irl C. Bivens and Stephen L. Davis, Calculus, Early Transcendentals, 7th Edition, John Wiley & Sons, Inc., NY, Section 6.1 An Overview of the Area Problem, page 372-377.
William Dunham, The Calculus Gallery, Masterpieces from Newton to Lebesgue, Princeton University Press, Princeton, NJ 2005, page 56-57.
FORMULA
a(n) = 3*2^n*sqrt(2- sqrt(2+ sqrt(2+ ... sqrt(2+ sqrt(3))...))).
A(n) in Table 6.1.1 = Sin( 2Pi/n )*n/2. - Anton.
MATHEMATICA
$MaxExtraPrecision =128; p=RealDigits[ Pi, 10, 100][[1]]; f[n_] := 3*2^(n)*Sqrt[2 - Nest[ Sqrt[2 + # ] &, Sqrt[3], n - 1]]; g[n_] := Block[{k = 1, q = Take[p, n + 1]}, While[ Take[ RealDigits[ f[k], 10, 100][[1]], n + 1] != q, k++ ]; k]; Table[ g[n], {n, 69}]
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Apr 20 2005
STATUS
approved