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.

A369104 Decimal expansion of Pi*(Pi-2)/(4+(Pi-2)^2).

Original entry on oeis.org

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

Views

Author

Bence BernĂ¡th, Jan 13 2024

Keywords

Comments

This is the prefactor of the Hall resistivity of strange metals in the high magnetic field regime. The number comes from a phenomenological model using a modified Boltzmann equation. See the link for details.

Examples

			0.67627022268...
		

Crossrefs

Programs

  • Mathematica
    First[RealDigits[Pi*(Pi-2)/(4+(Pi-2)^2), 10, 120, 0]] (* Paolo Xausa, Jun 29 2024 *)
  • Python
    from sympy import pi, N;
    def A369104(n):
        return list(map(int, str(N((pi*(pi-2))/(4+(pi-2)**2), n)).replace(".", "")))

Extensions

Leading 0 removed and offset changed to 0 by Georg Fischer, Feb 03 2025