A006084 Continued fraction for e/3.
0, 1, 9, 1, 1, 1, 5, 1, 1, 1, 1, 26, 1, 1, 3, 5, 1, 3, 1, 1, 44, 1, 1, 5, 5, 1, 5, 1, 1, 62, 1, 1, 7, 5, 1, 7, 1, 1, 80, 1, 1, 9, 5, 1, 9, 1, 1, 98, 1, 1, 11, 5, 1, 11, 1, 1, 116, 1, 1, 13, 5, 1, 13, 1, 1, 134, 1, 1, 15, 5, 1, 15, 1, 1, 152, 1, 1, 17, 5, 1, 17, 1, 1, 170, 1, 1, 19, 5, 1, 19, 1, 1
Offset: 1
Examples
0.906093942819681745120095823... = 0 + 1/(1 + 1/(9 + 1/(1 + 1/(1 + ...)))). - _Harry J. Smith_, May 12 2009
References
- D. E. Knuth, The Art of Computer Programming. Addison-Wesley, Reading, MA, Vol. 2, p. 601.
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Harry J. Smith, Table of n, a(n) for n = 1..20000
- G. Xiao, Contfrac
- Index entries for continued fractions for constants
- Index entries for linear recurrences with constant coefficients, signature (0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,-1).
Crossrefs
Cf. A019740 = Decimal expansion. - Harry J. Smith, May 12 2009
Programs
-
Mathematica
ContinuedFraction[E/3,100] (* Harvey P. Dale, Oct 14 2013 *) Join[{0, 1, 9},LinearRecurrence[{0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, -1},{1, 1, 1, 5, 1, 1, 1, 1, 26, 1, 1, 3, 5, 1, 3, 1, 1, 44},89]] (* Ray Chandler, Sep 03 2015 *)
-
PARI
{ allocatemem(932245000); default(realprecision, 54000); x=contfrac(exp(1)/3); for (n=1, 20000, write("b006084.txt", n, " ", x[n])); } \\ Harry J. Smith, May 12 2009
-
PARI
concat(0, Vec(x^2*(1+9*x+x^2+x^3+x^4+5*x^5+x^6+x^7+x^8-x^9+8*x^10-x^11-x^12+x^13-5*x^14-x^15+x^16-x^17+x^19)/((1-x)^2*(1+x+x^2)^2*(1+x^3+x^6)^2) + O(x^50))) \\ Colin Barker, May 16 2016
Formula
First eight terms are 0, 1, 9, 1, 1, 1, 5, 1; then a(9k)=2k-1, a(9k+1)=1, a(9k+2)=1, a(9k+3)=18k+8, a(9k+4)=1, a(9k+5)=1, a(9k+6)=2k+1, a(9k+7)=5, a(9k+8)=1. - Benoit Cloitre, Apr 08 2003
G.f.: x^2*(1+9*x+x^2+x^3+x^4+5*x^5+x^6+x^7+x^8-x^9+8*x^10-x^11-x^12+x^13-5*x^14-x^15+x^16-x^17+x^19) / ((1-x)^2*(1+x+x^2)^2*(1+x^3+x^6)^2). - Colin Barker, May 16 2016
Extensions
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 20 2003