OFFSET
0,1
COMMENTS
Repeat s = s + Pi; s=1/s. The initial value of s is irrelevant.
Solves log(x+Pi) = -log(x). This equation represents the first (by absolute value) self-intersection of the spiral defined by the polar equation r=log(theta), and this constant is the smaller value of theta in the self-intersection. - Jeremy Tan, Sep 03 2016
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..10000
FORMULA
Equals (sqrt(Pi^2+4)-Pi)/2 = 0.2912995... . - R. J. Mathar, Sep 15 2012
EXAMPLE
1
------
Pi + 1
------
Pi + 1
--------
Pi + ...
MATHEMATICA
RealDigits[N[(Sqrt[Pi^2 + 4] - Pi)/2, 120]] // First (* Michael De Vlieger, Mar 31 2015 *)
PROG
(PARI) default(realprecision, 2000); f(n) = s=0; for(x=1, n, s=s+Pi; s=1/s); print(s)
CROSSREFS
KEYWORD
AUTHOR
Cino Hilliard, Aug 03 2003
STATUS
approved