A322086 One of the two successive approximations up to 13^n for 13-adic integer sqrt(3). Here the 9 (mod 13) case (except for n = 0).
0, 9, 61, 1075, 9863, 9863, 3722793, 56817692, 245063243, 2692255406, 23901254152, 1540344664491, 12293307028713, 198677988008561, 804428201193067, 24428686515388801, 75614579529479558, 741031188712659399, 26692278946856673198, 813880127610558425101, 11047322160238681199840
Offset: 0
Keywords
Examples
9^2 = 81 = 6*13 + 3. 61^2 = 3721 = 22*13^2 + 3. 1075^2 = 1155625 = 526*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)]): S9:= op(select(t -> t[1]=9, S)): seq(add(S9[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