cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A002950 Continued fraction for fifth root of 2.

Original entry on oeis.org

1, 6, 1, 2, 1, 1, 1, 3, 25, 1, 4, 3, 3, 7, 52, 1, 2, 3, 2, 15, 2, 2, 4, 16, 2, 7, 1, 1, 1, 10, 21, 1, 1, 1, 141, 2, 4, 1, 4, 2, 1, 1, 17, 1, 3, 3, 4, 1, 3, 1, 3, 2, 1, 1, 2, 33, 1, 6, 6, 1, 2, 4, 1, 21, 1, 3, 3, 8, 10, 1, 46, 6, 1, 10, 1, 1, 1, 1, 2, 11, 1, 3, 1
Offset: 0

Views

Author

Keywords

Examples

			2^(1/5) = 1.148698354997035006798626946... = 1 + 1/(6 + 1/(1 + 1/(2 + 1/(1 + ...)))). - _Harry J. Smith_, May 12 2009
		

References

  • H. P. Robinson, Letter to N. J. A. Sloane, Nov 13 1973.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A005531 (decimal expansion).
Cf. A002361, A002362 (convergents).

Programs

  • Magma
    SetDefaultRealField(RealField(100)); ContinuedFraction(2^(1/5)); // G. C. Greubel, Nov 02 2018
  • Maple
    with(numtheory):
    cfrac(2^(1/5),100,'quotients'); # Muniru A Asiru, Nov 02 2018
  • Mathematica
    ContinuedFraction[2^(1/5), 100] (* G. C. Greubel, Nov 02 2018 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(2^(1/5)); for (n=1, 20000, write("b002950.txt", n-1, " ", x[n])); } \\ Harry J. Smith, May 12 2009
    

Extensions

Offset changed by Andrew Howroyd, Jul 05 2024

A002362 Numerators of continued fraction convergents to fifth root of 2.

Original entry on oeis.org

1, 7, 8, 23, 31, 54, 85, 309, 7810, 8119, 40286, 128977, 427217, 3119496, 162641009, 165760505, 494162019, 1648246562, 3790655143, 58508073707, 120806802557, 300121678821, 1321293517841, 21440817964277, 44202929446395, 330861324089042, 375064253535437
Offset: 0

Views

Author

Keywords

References

  • D. H. Lehmer, Guide to Tables in the Theory of Numbers. Bulletin No. 105, National Research Council, Washington, DC, 1941, p. 67.
  • P. Seeling, Verwandlung der irrationalen Groesse ... in einen Kettenbruch, Archiv. Math. Phys., 46 (1866), 80-120.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A002361 (denominators), A002950, A005531.

Programs

  • Mathematica
    Numerator[Convergents[2^(1/5), 30]] (* Vincenzo Librandi, Sep 08 2013 *)
  • PARI
    a(n)= contfracpnqn(contfrac(2^(1/5), n+1))[1, 1]; \\ Michel Marcus, Sep 07 2013

Extensions

More terms from Herman P. Robinson
More terms from Michel Marcus, Sep 07 2013
a(26)-a(27) corrected by Vincenzo Librandi, Sep 08 2013
Offset changed by Andrew Howroyd, Jul 05 2024
Showing 1-2 of 2 results.