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.

A010156 Continued fraction for sqrt(78).

Original entry on oeis.org

8, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16, 1, 4, 1, 16
Offset: 0

Views

Author

Keywords

Examples

			8.83176086632784685476404272... = 8 + 1/(1 + 1/(4 + 1/(1 + 1/(16 + ...)))). - _Harry J. Smith_, Jun 09 2009
		

Crossrefs

Cf. A010530 (decimal expansion).

Programs

  • Mathematica
    ContinuedFraction[Sqrt[78],300] (* Vladimir Joseph Stephan Orlovsky, Mar 09 2011 *)
    PadRight[{8},120,{16,1,4,1}] (* Harvey P. Dale, Sep 10 2023 *)
  • PARI
    { allocatemem(932245000); default(realprecision, 21000); x=contfrac(sqrt(78)); for (n=0, 20000, write("b010156.txt", n, " ", x[n+1])); } \\ Harry J. Smith, Jun 09 2009

Formula

From Amiram Eldar, Nov 13 2023: (Start)
Multiplicative with a(2) = 4, a(2^e) = 16 for e >= 2, and a(p^e) = 1 for an odd prime p.
Dirichlet g.f.: zeta(s) * (1 + 3/2^s + 4/4^(s-1)). (End)