OFFSET
0,3
COMMENTS
The increasing partial quotients are 1, 9, 11, 25, 50, 87, 514, 610, 647, 676, 2710, 10647, ...
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..4999
EXAMPLE
1.903568065729906338900833721... = 1 + 1/(1 + 1/(9 + 1/(2 + 1/(1 + ...)))). - Harry J. Smith, Jun 17 2009
MATHEMATICA
ContinuedFraction[ Binomial[Pi, E], 100]
PROG
(PARI) { allocatemem(932245000); default(realprecision, 5400); e=exp(1); x=contfrac(gamma(Pi+1)/(gamma(e+1)*gamma(Pi-e+1))); for (n=1, 5000, write("b093962.txt", n-1, " ", x[n])); } \\ Harry J. Smith, Jun 17 2009
(Sage) continued_fraction_list( gamma(pi+1)/(gamma(e+1)*gamma(pi -e +1)), nterms=110) # G. C. Greubel, Dec 29 2021
CROSSREFS
KEYWORD
cofr,nonn
AUTHOR
Robert G. Wilson v, Apr 20 2004
EXTENSIONS
Offset changed by Andrew Howroyd, Aug 07 2024
STATUS
approved