OFFSET
1,1
COMMENTS
Continued fraction expansion is 7 followed by {1, 2, 1, 14} repeated. - Harry J. Smith, Jun 07 2009
With a different offset, decimal expansion of 0.6. In a unimodal distribution, the mean and median differ by at most 0.6 standard deviations (and this is sharp), see Basu & DasGupta. - Charles R Greathouse IV, Oct 01 2024
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
Sanjib Basu and Anirban DasGupta, The Mean, Median, and Mode of Unimodal Distributions: A Characterization, Theory of Probability & Its Applications 41:2 (1997), pp. 210-223; alternative link.
FORMULA
Equals 10 * sqrt(3/5) = 10 * Sum_{k>=0} (-1)^k * binomial(2*k,k)/6^k. - Amiram Eldar, Aug 03 2020
EXAMPLE
7.745966692414833770358530799564799221665843410583181653175147532226966....
MATHEMATICA
RealDigits[N[Sqrt[60], 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Feb 25 2011 *)
PROG
(PARI) { default(realprecision, 20080); x=sqrt(60); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010513.txt", n, " ", d)); } \\ Harry J. Smith, Jun 07 2009
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved