OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..999
EXAMPLE
(Pi - sqrt(-4 + Pi^2))/2 = [0,2,1,3,1,1,2,3,1,5,1,1,34,...].
MAPLE
numtheory:-cfrac((Pi-sqrt(Pi^2-4))/2, 40, 'quotients'); # Robert Israel, Jun 15 2015
MATHEMATICA
r = Pi; t = (r - (-4 + r^2)^(1/2))/2; FullSimplify[t]
N[t, 130]
RealDigits[N[t, 130]][[1]]
ContinuedFraction[t, 120]
PROG
(PARI) contfrac((Pi-sqrt(-4+Pi^2))/2) \\ Michel Marcus, Jun 14 2015
CROSSREFS
KEYWORD
nonn,cofr
AUTHOR
Clark Kimberling, Apr 15 2011
EXTENSIONS
Definition corrected by Robert Israel, Jun 15 2015
Offset changed by Andrew Howroyd, Aug 08 2024
STATUS
approved