A309612 Digits of the 10-adic integer (-23/9)^(1/3).
7, 3, 7, 0, 2, 3, 9, 5, 2, 5, 7, 6, 5, 0, 9, 7, 8, 3, 4, 4, 5, 4, 0, 2, 6, 6, 7, 3, 5, 0, 3, 9, 9, 3, 5, 0, 4, 6, 7, 6, 8, 0, 3, 6, 6, 9, 4, 3, 8, 8, 5, 2, 7, 6, 8, 3, 7, 4, 2, 0, 0, 2, 6, 4, 8, 9, 1, 5, 7, 9, 7, 3, 6, 8, 3, 1, 7, 3, 5, 1, 5, 6, 5, 4, 0, 4, 6, 1, 0, 1, 3, 4, 2, 0, 8, 2, 7, 2, 3, 8
Offset: 0
Examples
7^3 == 3 (mod 10). 37^3 == 53 (mod 10^2). 737^3 == 553 (mod 10^3). 737^3 == 5553 (mod 10^4). 20737^3 == 55553 (mod 10^5). 320737^3 == 555553 (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) = 7, b(n) = b(n-1) + 3 * (9 * b(n-1)^3 + 23) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n