A309602 Digits of the 10-adic integer (71/9)^(1/3).
9, 3, 6, 8, 3, 2, 7, 4, 5, 4, 1, 1, 9, 2, 2, 9, 0, 0, 3, 4, 5, 8, 1, 0, 7, 1, 6, 4, 6, 5, 3, 0, 3, 1, 5, 6, 9, 7, 3, 2, 4, 2, 4, 2, 0, 6, 2, 2, 0, 2, 3, 6, 7, 8, 4, 6, 5, 1, 5, 7, 5, 0, 9, 4, 4, 0, 9, 5, 5, 1, 9, 0, 2, 4, 7, 7, 6, 6, 4, 0, 1, 0, 6, 2, 9, 6, 8, 3, 9, 7, 9, 6, 0, 2, 3, 4, 6, 8, 6, 8
Offset: 0
Keywords
Examples
9^3 == 9 (mod 10). 39^3 == 19 (mod 10^2). 639^3 == 119 (mod 10^3). 8639^3 == 1119 (mod 10^4). 38639^3 == 11119 (mod 10^5). 238639^3 == 111119 (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 - 71) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n.