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.

A290567 The successive approximations up to 5^n for 5-adic integer 2^(1/3).

Original entry on oeis.org

0, 3, 3, 53, 303, 2178, 5303, 67803, 67803, 849053, 6708428, 6708428, 6708428, 983270928, 983270928, 25397333428, 147467645928, 605231317803, 1368170770928, 5182868036553, 43329840692803, 43329840692803, 43329840692803, 4811701422724053, 52495417243036553
Offset: 0

Views

Author

Seiichi Manyama, Aug 06 2017

Keywords

Comments

x = ...132203,
x^2 = ...344214,
x^3 = ...000002 = 2.

Examples

			a(1) = (   3)_5 = 3,
a(2) = (   3)_5 = 3,
a(3) = ( 203)_5 = 53,
a(4) = (2203)_5 = 303.
		

Crossrefs

Programs

  • PARI
    a(n)=truncate((2+O(5^n))^(1/3)); \\ Joerg Arndt, Aug 06 2017

Formula

a(0) = 0 and a(1) = 3, a(n) = a(n-1) + 2 * (a(n-1)^3 - 2) mod 5^n for n > 1.