OFFSET
1,1
COMMENTS
Continued fraction expansion is 4 followed by {4, 8} repeated. - Harry J. Smith, Jun 05 2009
3*sqrt(2) = sqrt(18) is also the minimum width of the arms of the cellular automaton described in A294020. - Omar E. Pol, Oct 29 2017
Equals lambda(3) where lambda(n) = n*Product_{k=2..n-1} k^((n-k)/(n-k+1)). - Michel Marcus, Apr 02 2020
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
Michael Penn, A nice algebra problem with complex numbers, YouTube video, 2022.
EXAMPLE
4.242640687119285146405066172629094235709015626130844219530039213972197....
MAPLE
evalf[100](sqrt(18)); # Muniru A Asiru, Feb 12 2019
MATHEMATICA
RealDigits[Sqrt[18], 10, 100][[1]] (* Vladimir Joseph Stephan Orlovsky, Feb 21 2011 *)
PROG
(PARI) default(realprecision, 100); sqrt(18) \\ Harry J. Smith, Jun 03 2009 (modified by G. C. Greubel, Feb 14 2019)
(Magma) SetDefaultRealField(RealField(100)); Sqrt(18); // G. C. Greubel, Feb 14 2019
(Sage) numerical_approx(sqrt(18), digits=100) # G. C. Greubel, Feb 14 2019
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved