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”).

A306555
Expansion of the 10-adic cube root of -1/13, that is, the 10-adic integer solution to x^3 = -1/13.
4
7, 4, 3, 5, 8, 0, 6, 7, 1, 2, 5, 9, 1, 6, 3, 4, 2, 2, 9, 0, 1, 7, 2, 4, 8, 5, 1, 9, 0, 4, 8, 3, 9, 3, 7, 8, 6, 7, 7, 3, 5, 7, 2, 9, 3, 1, 3, 8, 6, 6, 7, 7, 9, 9, 8, 4, 3, 2, 0, 3, 7, 2, 1, 5, 7, 3, 6, 3, 6, 9, 8, 9, 5, 4, 4, 3, 3, 8, 6, 4, 5, 6, 6, 6, 8, 2, 9
OFFSET
1,1
COMMENTS
10's complement of A306554.
LINKS
FORMULA
a(n) = 9 - A306554(n) for n >= 2.
EXAMPLE
7^3 == 3 == -1/13 (mod 10).
47^3 == 23 == -1/13 (mod 100).
347^3 == 923 == -1/13 (mod 1000).
5347^3 == 6923 == -1/13 (mod 10000).
...
...952176085347^3 = ...076923076923 = ...999999999999/13 = -1/13.
MAPLE
op([1, 3], padic:-rootp(13*x^3+1, 10, 100)); # Robert Israel, Mar 24 2019
PROG
(PARI) seq(n)={Vecrev(digits(lift(chinese( Mod((-1/13 + O(5^n))^(1/3), 5^n), Mod((-1/13 + O(2^n))^(1/3), 2^n)))), n)} \\ Following Andrew Howroyd's code for A319740.
CROSSREFS
10-adic cube root of p/q:
q=1: A225409 (p=-9), A225408 (p=-7), A225407 (p=-3), A225404 (p=3), A225405 (p=7), A225406 (p=9);
q=3: A225402 (p=-1), A225411 (p=1);
q=7: A306552 (p=-1), A319739 (p=1);
q=9: A225401 (p=-7), A153042 (p=-1), A225412 (p=1), A225410 (p=7);
q=11: A306553 (p=-1), A319740 (p=1);
q=13: this sequence (p=-1), A306554 (p=1).
Sequence in context: A243309 A244817 A303612 * A293237 A316250 A199727
KEYWORD
nonn,base
AUTHOR
Jianing Song, Feb 23 2019
STATUS
approved