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.

A329334 Continued fraction of A328904 = 0.7271601514124259..., solution to 1 + 3^x = 5^x.

Original entry on oeis.org

0, 1, 2, 1, 1, 1, 72, 1, 3, 2, 6, 1, 1, 2, 45, 1, 5, 13, 73, 1, 2, 1, 9, 1, 1, 1, 3, 2, 3, 3, 2, 1, 2, 2, 1, 1, 19, 1, 1, 1, 1, 5, 1, 5, 2, 4, 3, 1, 6, 1, 1, 2, 1, 9, 8, 1, 4, 1, 1, 20, 1, 1, 2, 1, 5, 2, 2, 1, 2, 5, 1, 56, 1, 1, 1, 6, 127, 1, 1, 7, 2, 7, 1, 6, 1, 1, 3, 1, 54, 1, 1, 3, 2, 1, 1, 3
Offset: 0

Views

Author

M. F. Hasler, Nov 11 2019

Keywords

Examples

			0.7271601514124259... = 0 + 1/(1 + 1/(2 + 1/(1 + 1/(1 + 1/(1  + 1/(72 + 1/...))))))
		

Crossrefs

Cf. A328912 (cont. frac. of A242208: 1 + 2^x = 4^x), A328913 (cont. frac. of A328900: 2^x + 3^x = 4^x), A329337 (cont. frac. of A328907: 1 + 3^x = 6^x).

Programs

  • PARI
    contfrac(c=solve(x=0,1, 1+3^x-5^x))[^-1] \\ discarding possibly incorrect last term. Use e.g. \p999 to get more terms. - M. F. Hasler, Oct 31 2019