A322701 The successive approximations up to 2^n for 2-adic integer 3^(1/3).
0, 1, 3, 3, 11, 27, 59, 123, 123, 379, 379, 379, 379, 4475, 12667, 29051, 61819, 127355, 127355, 127355, 127355, 127355, 2224507, 2224507, 2224507, 19001723, 52556155, 119665019, 253882747, 253882747, 253882747, 1327624571, 3475108219, 7770075515
Offset: 0
Keywords
Examples
11^3 = 1331 = 83*2^4 + 3; 27^3 = 19683 = 615*2^5 + 3; 59^3 = 205379 = 3209*2^6 + 3.
Links
- Wikipedia, p-adic number
Crossrefs
Programs
-
PARI
a(n) = lift(sqrtn(3+O(2^n), 3))
Formula
For n > 0, a(n) = a(n-1) if a(n-1)^3 - 3 is divisible by 2^n, otherwise a(n-1) + 2^(n-1).
Comments