A369104 Decimal expansion of Pi*(Pi-2)/(4+(Pi-2)^2).
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
Examples
0.67627022268...
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.
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
Comments