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.

A019964 Decimal expansion of tangent of 66 degrees.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

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

Examples

			2.24603677390421605416332143841640915914036310102689708141...
		

Crossrefs

Cf. A019875 (sine 66 degrees).

Programs

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