A321073 One of the two successive approximations up to 11^n for 11-adic integer sqrt(3). Here the 6 (mod 11) case (except for n = 0).
0, 6, 94, 578, 3240, 135009, 296060, 2067621, 118990647, 1619502814, 3977450505, 211476847313, 782100188535, 22751098825582, 229887371689168, 609637205272409, 38204870730013268, 84154600593585429, 3622283800088641826, 42541704994534262193, 654132609478679725103
Offset: 0
Examples
6^2 = 36 = 3 + 3*11. 94^2 = 8836 = 3 + 73*11^2. 578^2 = 334084 = 3 + 251*11^3.
Links
- Wikipedia, p-adic number
Programs
-
PARI
a(n) = truncate(-sqrt(3+O(11^n)))
Formula
For n > 0, a(n) = 11^n - A321072(n).
a(n) = Sum_{i=0..n-1} A321075(i)*11^i.
a(n) == (3 + sqrt(8))^(11^n) + (3 - sqrt(8))^(11^n) (mod 11^n). - Peter Bala, Dec 04 2022
Comments