A188934 Decimal expansion of (1+sqrt(17))/4.
1, 2, 8, 0, 7, 7, 6, 4, 0, 6, 4, 0, 4, 4, 1, 5, 1, 3, 7, 4, 5, 5, 3, 5, 2, 4, 6, 3, 9, 9, 3, 5, 1, 9, 2, 5, 6, 2, 8, 6, 7, 9, 9, 8, 0, 6, 3, 4, 3, 4, 0, 5, 1, 0, 8, 5, 9, 9, 6, 5, 8, 3, 9, 3, 2, 7, 3, 7, 3, 8, 5, 8, 6, 5, 8, 4, 4, 0, 5, 3, 9, 8, 3, 9, 6, 9, 6, 5, 9, 1, 2, 7, 0, 2, 6, 7, 1, 0, 7, 4, 1, 7, 1, 1, 3, 6, 0, 1, 0, 2, 3, 4, 8, 0, 3, 5, 3, 5, 4, 0, 3, 8, 2, 5, 3, 5, 5, 2, 1, 0
Offset: 1
Examples
1.2807764064044151374553524639935192562...
Programs
-
Mathematica
r = 1/2; t = (r + (4 + r^2)^(1/2))/2; RealDigits[ N[ FullSimplify@ t, 111]][[1]] (* for the continued fraction *) ContinuedFraction[t, 120] RealDigits[(1 + Sqrt@ 17)/4, 10, 111][[1]] (* Or *) RealDigits[Exp@ ArcSinh[1/4], 10, 111][[1]] (* Robert G. Wilson v, Aug 17 2011 *)
-
PARI
(sqrt(17)+1)/4 \\ Charles R Greathouse IV, May 12 2016
Comments