The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A117759 Decimal expansion of a certain constant (see Comments lines for definition). 0
5, 7, 2, 1, 5, 0, 1, 0, 3, 7, 4, 2, 6, 6, 4, 9, 2, 8, 4, 4, 3, 3, 5, 6, 7, 5, 5, 1, 0, 7, 8, 0, 1, 7, 8, 0, 0, 5, 9, 9, 5, 5, 5, 9, 5, 2, 9, 8, 9, 4, 4, 7, 5, 3, 0, 5, 3, 3, 7, 1, 4, 5, 3, 1, 0, 1, 6, 6, 8, 2, 0, 8, 6, 4, 4, 1, 2, 3, 8, 7, 5, 9, 5, 8, 0, 5, 0, 4, 7, 3, 5, 8, 7, 2, 9, 5, 0, 2, 1, 0, 4 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Fanfolding the triangles defined by the spiral of Theodorus, each successive hypotenuse converges to a limit which divides the angle Pi/4 of the first triangle. The ratio of the limit angle to Pi/4 is 0.5721501037... = -sum[((-1)^n)(arctan(1/sqrt(n))] / (Pi/4) The index n starts at 1 for the first triangle (Pi/4) and counts triangles.
I have developed an algorithm to compute the alternating sum, which converges quite slowly. I have computed a value to the precision limit of 64-bit floating point, which is about 14 decimal places. The execution time is about one second. It is unclear whether the algorithm readily adapts to arbitrary precision calculation software in a usable way. There are related sequences: the actual convergent angle in degrees, or radians, etc. as well as a whole family of similarly defined convergents. Other than general treatments of the spiral of Theodorus, no references are known.
Using the sumalt() function in PARI allows one to find as many terms as desired (see PARI program). - Joerg Arndt, Jan 05 2011
LINKS
FORMULA
0.5721501037... = -Sum_{n >= 1} [((-1)^n)(arctan(1/sqrt(n))] / (Pi/4) or = -argument(product[(sqrt(n)+((-1)^n)i)/magnitude(sqrt(n)+((-1)^n)i)]) / (Pi/4).
MATHEMATICA
digits = 101; -NSum[(-1)^n*ArcTan[1/Sqrt[n]], {n, 1, Infinity}, Method -> "AlternatingSigns", WorkingPrecision -> digits+10]/(Pi/4) // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Feb 15 2013 *)
PROG
(PARI): default(realprecision, 155);
-sumalt(n=1, (-1)^n*(atan(1/sqrt(n))))/(Pi/4)
/* gives 0.57215010374266492844335675510780178005995559529894... */
CROSSREFS
Sequence in context: A087455 A294403 A192040 * A021640 A155968 A154479
KEYWORD
cons,nonn
AUTHOR
Peter Hammer, Apr 14 2006
EXTENSIONS
More terms from Joerg Arndt, Jan 05 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 17 17:07 EDT 2024. Contains 372603 sequences. (Running on oeis4.)