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.

A019953 Decimal expansion of tangent of 55 degrees.

Original entry on oeis.org

1, 4, 2, 8, 1, 4, 8, 0, 0, 6, 7, 4, 2, 1, 1, 4, 5, 0, 2, 1, 6, 0, 6, 1, 8, 4, 8, 4, 9, 9, 8, 5, 0, 0, 7, 3, 9, 6, 3, 3, 8, 0, 1, 6, 1, 2, 0, 7, 5, 3, 1, 9, 0, 9, 7, 6, 1, 1, 7, 9, 4, 1, 2, 7, 2, 8, 1, 6, 9, 5, 5, 1, 7, 5, 2, 7, 9, 8, 8, 5, 3, 2, 9, 3, 7, 3, 0, 2, 5, 6, 4, 1, 2, 5, 3, 4, 0, 3, 5
Offset: 1

Views

Author

Keywords

Comments

Also the decimal expansion of cotangent of 35 degrees. - Ivan Panchenko, Sep 01 2014

Examples

			1.4281480067421145021606184849985007396338016120753190976117941...
		

Crossrefs

Cf. A019864 (sine of 55 degrees).

Programs

  • Magma
    SetDefaultRealField(RealField(100)); R:= RealField(); Tan(11*Pi(R)/36); // G. C. Greubel, Nov 22 2018
    
  • Mathematica
    RealDigits[Tan[11*Pi/36], 10, 100][[1]] (* G. C. Greubel, Nov 22 2018 *)
  • PARI
    default(realprecision, 100); tan(11*Pi/36) \\ G. C. Greubel, Nov 22 2018
    
  • Sage
    numerical_approx(tan(11*pi/36), digits=100) # G. C. Greubel, Nov 22 2018