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.

A374322 Decimal expansion of sqrt(2)*9801/4412.

Original entry on oeis.org

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

Views

Author

Paolo Xausa, Jul 04 2024

Keywords

Comments

Approximates Pi, correct to 7 digits.

Examples

			3.1415927300133056603139961890252155185995816071100335596565...
		

Crossrefs

Programs

  • Mathematica
    First[RealDigits[Sqrt[2]*9801/4412, 10, 100]]
  • Python
    from math import isqrt
    def A374322(n): return isqrt(10**(n-1<<1)*96059601//9732872)%10 # Chai Wah Wu, Jul 04 2024