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.

A197514 Decimal expansion of least x > 0 having cos(2*x) = cos(Pi*x/6)^2.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Oct 16 2011

Keywords

Comments

The Mathematica program includes a graph. See A197476 for a guide for the least x > 0 satisfying cos(b*x) = cos(c*x)^2 for selected b and c.
This number is irrational. I cannot prove it to be algebraic or transcendental. - Charles R Greathouse IV, Feb 16 2025

Examples

			2.40347697899992522545129646324811831083...
		

Crossrefs

Cf. A197476.

Programs

  • Mathematica
    b = 2; c = Pi/6; f[x_] := Cos[x]
    t = x /. FindRoot[f[b*x] == f[c*x]^2, {x, 2.4, 2.41}, WorkingPrecision -> 110]
    RealDigits[t]  (* A197514 *)
    Plot[{f[b*x], f[c*x]^2}, {x, 0, 3}]