OFFSET
0,1
COMMENTS
For k not divisible by 5, k is a cube in 13-adic field if and only if k == 1, 5, 8, 12 (mod 13). If k is a cube in 13-adic field, then k has exactly three cubic roots.
LINKS
Seiichi Manyama, Table of n, a(n) for n = 0..10000
Wikipedia, p-adic number
EXAMPLE
The unique number k in [1, 13^3] and congruent to 11 modulo 13 such that k^3 - 5 is divisible by 13^3 is k = 999 = (5BB)_13, so the first three terms are 11, 11 and 5.
PROG
(PARI) a(n) = lift(sqrtn(5+O(13^(n+1)), 3) * (-1-sqrt(-3+O(13^(n+1))))/2)\13^n
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jianing Song, Aug 27 2019
STATUS
approved