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.

User: Muthu Veerappan Ramalingam

Muthu Veerappan Ramalingam's wiki page.

Muthu Veerappan Ramalingam has authored 2 sequences.

A330924 Decimal expansion of the mean length of a line segment drawn by picking a random point on a unit square and extending it in a random direction until it meets an edge.

Original entry on oeis.org

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

Author

Keywords

Examples

			0.47320100440933855164249820976301198129996056896363...
		

Crossrefs

Cf. A330646.

Programs

  • Mathematica
    N[(2 - 2 Sqrt[2])/3/Pi + 2 ArcCsch[1]/Pi, 50]
  • PARI
    arcsch(x) = log(1/x + sqrt(1+1/x^2));
    (2 - 2*sqrt(2))/(3*Pi) + (2/ Pi)*arcsch(1) \\ Michel Marcus, Jan 16 2020

Formula

Equals (2 - 2 * sqrt(2)) / (3 * Pi) + (2 / Pi) * cosech^{-1}(1)
Equals (a^3 + b^3 - d^3) / (3 * Pi * a * b) + (a / Pi) * cosech^{-1}(a / b) + (b / Pi) * cosech^{-1}(b / a) for an arbitrary rectangle with sides a, b and diagonal d.

A330646 Decimal expansion of the mean length of a line segment drawn by picking a random point on a unit length equilateral triangle and extending it in a random direction until it meets an edge.

Original entry on oeis.org

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

Author

Keywords

Examples

			0.302848349804097933375691303492564570884596990578285814558...
		

Crossrefs

Cf. A093064.

Programs

  • Mathematica
    RealDigits[Sqrt[3] Log[3]/2/Pi, 10, 110][[1]]

Formula

Equals sqrt(3) * log(3) / (2 * Pi).
Equals (h_a/(3*Pi))*cosech^{-1}((1/2)*((b+c)/a-a/(b+c)))+(h_b/(3*Pi))*cosech^{-1}((1/2)*((c+a)/b-b/(c+a)))+(h_c/(3*Pi))*cosech^{-1}((1/2)*((a+b)/c-c/(a+b))) for an arbitrary triangle with sides a, b and c with corresponding altitudes h_a, h_b and h_c.