A322926 The successive approximations up to 2^n for 2-adic integer 5^(1/3).
0, 1, 1, 5, 13, 29, 29, 93, 93, 93, 605, 1629, 3677, 3677, 3677, 20061, 20061, 20061, 151133, 151133, 151133, 151133, 151133, 4345437, 4345437, 21122653, 54677085, 54677085, 188894813, 457330269, 457330269, 457330269, 2604813917, 6899781213, 6899781213
Offset: 0
Keywords
Examples
13^3 = 2197 = 137*2^4 + 5; 29^3 = 24389 = 762*2^5 + 5 = 381*2^6 + 5; 93^3 = 804357 = 6284*2^7 + 5 = 3142*2^8 + 5 = 1571*2^9 + 5.
Links
- Wikipedia, p-adic number
Crossrefs
Programs
-
PARI
a(n) = lift(sqrtn(5+O(2^n), 3))
Formula
For n > 0, a(n) = a(n-1) if a(n-1)^3 - 5 is divisible by 2^n, otherwise a(n-1) + 2^(n-1).
Comments