login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A369104
Decimal expansion of Pi*(Pi-2)/(4+(Pi-2)^2).
2
0, 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
1,2
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.
REFERENCES
R. D. H. Hinlopen, F. A. Hinlopen, J. Ayres, and N. E. Hussey, B^2 to B-linear magnetoresistance due to impeded orbital motion, Physical Review Research 4, no. 3 (2022): 033195.
LINKS
R. D. H. Hinlopen, F. A. Hinlopen, J. Ayres, and N. E. Hussey, B^2 to B-linear magnetoresistance due to impeded orbital motion, Physical Review Research 4, no. 3 (2022): 033195.
EXAMPLE
Pi*(Pi-2)/(4+(Pi-2)^2) = 0.67627022268...
MATHEMATICA
First[RealDigits[Pi*(Pi-2)/(4+(Pi-2)^2), 10, 120, 0]] (* Paolo Xausa, Jun 29 2024 *)
PROG
(Python)
from sympy import pi, N;
def A369104(n):
return list(map(int, str(N((pi*(pi-2))/(4+(pi-2)**2), n)).replace(".", "")))
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Bence Bernáth, Jan 13 2024
STATUS
approved