A322085 One of the two successive approximations up to 13^n for 13-adic integer sqrt(3). Here the 4 (mod 13) case (except for n = 0).
0, 4, 108, 1122, 18698, 361430, 1104016, 5930825, 570667478, 7912243967, 113957237697, 251815729546, 11004778093768, 104197118583692, 3132948184506222, 26757206498701956, 589802029653700283, 7909384730668678534, 85763128005100719931, 648040162764887685576
Offset: 0
Keywords
Examples
4^2 = 16 = 1*13 + 3. 108^2 = 11664 = 69*13^2 + 3. 1122^2 = 1258884 = 573*13^3 + 3.
Links
- Robert Israel, Table of n, a(n) for n = 0..896
- Wikipedia, p-adic number
Programs
-
Maple
S:= map(t -> op([1,3],t),[padic:-evalp(RootOf(x^2-3,x),13,30)]): S4:= op(select(t -> t[1]=4, S)): seq(add(S4[i]*13^(i-1),i=1..n-1),n=1..31); # Robert Israel, Jun 13 2019
-
PARI
a(n) = truncate(sqrt(3+O(13^n)))
Comments