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.

A034946 Successive approximations to 11-adic integer sqrt(3).

Original entry on oeis.org

0, 5, 27, 753, 11401, 26042, 1475501, 17419550, 95368234, 738444877, 21959974096, 73834823298, 2356328188186, 11771613318349, 149862461894073, 3567610964143242, 7744859133558893, 421292427905708342, 1937633513403589655
Offset: 0

Views

Author

Keywords

Comments

Terms of A321072 without repetition. - Jianing Song, Oct 31 2018

References

  • K. Mahler, Introduction to p-Adic Numbers and Their Functions, Cambridge, 1973, p. 35.

Crossrefs

Cf. A321072.

Programs

  • PARI
    sqrt(3+O(11^40))
    
  • PARI
    A321072(n) = truncate(sqrt(3+O(11^n)))
    for(n=0, 50, if(valuation(A321072(n)^2-3, 11)!=valuation(A321072(n+1)^2-3, 11), print1(A321072(n), ", "))) \\ Jianing Song, Nov 01 2018