login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A034944
Successive approximations to 13-adic integer sqrt(-1).
2
0, 5, 70, 239, 143044, 1999509, 6826318, 822557039, 85658552023, 1188526486815, 11941488851037, 291518510320809, 2108769149874327, 13920898306972194, 2675587335039691558, 63228498770709057089
OFFSET
0,2
REFERENCES
K. Mahler, Introduction to p-Adic Numbers and Their Functions, Cambridge, 1973, p. 35.
LINKS
PROG
(PARI) seq(n)={my(v=vector(n), i=1, k=0); while(i<#v, k++; my(t=truncate(sqrt(-1 + O(13^k)))); if(t > v[i], i++; v[i]=t)); v} \\ Andrew Howroyd, Nov 10 2018
CROSSREFS
KEYWORD
nonn,easy
STATUS
approved