A309614 Digits of the 10-adic integer (31/9)^(1/3).
9, 1, 9, 8, 8, 1, 3, 3, 5, 8, 3, 9, 6, 0, 0, 9, 0, 6, 1, 9, 2, 8, 3, 4, 4, 7, 9, 1, 1, 5, 3, 2, 0, 1, 6, 9, 3, 2, 9, 2, 5, 9, 4, 0, 0, 4, 7, 9, 3, 2, 1, 0, 2, 1, 2, 7, 8, 7, 9, 2, 5, 1, 1, 5, 6, 3, 9, 3, 1, 7, 8, 5, 7, 1, 3, 2, 9, 4, 2, 5, 0, 2, 2, 4, 1, 5, 4, 0, 4, 2, 1, 5, 2, 0, 5, 5, 6, 2, 0, 8
Offset: 0
Examples
9^3 == 9 (mod 10). 19^3 == 59 (mod 10^2). 919^3 == 559 (mod 10^3). 8919^3 == 5559 (mod 10^4). 88919^3 == 55559 (mod 10^5). 188919^3 == 555559 (mod 10^6).
Links
- Seiichi Manyama, Table of n, a(n) for n = 0..10000
Programs
Formula
Define the sequence {b(n)} by the recurrence b(0) = 0 and b(1) = 9, b(n) = b(n-1) + 7 * (9 * b(n-1)^3 - 31) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n.