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.

A351208 Decimal expansion of the 11th root of 3.

Original entry on oeis.org

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

Views

Author

Mark Andreas, Feb 04 2022

Keywords

Examples

			1.1050315033964...
		

Crossrefs

Cf. A246710 (8th root), A011446 (9th root), A246711 (10th root).

Programs

  • Maple
    Digits:=100: evalf(3^(1/11));
  • Mathematica
    RealDigits[3^(1/11), 10, 108][[1]]
  • PARI
    sqrtn(3, 11)
    
  • Python
    from sympy import integer_nthroot
    def A351208(n): return integer_nthroot(3*10**(11*(n-1)),11)[0] % 10 # Chai Wah Wu, Mar 07 2022

Formula

Equals 3^(1/11).