login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A309602 Digits of the 10-adic integer (71/9)^(1/3). 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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
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.
EXAMPLE
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).
PROG
(PARI) N=100; Vecrev(digits(lift(chinese(Mod((71/9+O(2^N))^(1/3), 2^N), Mod((71/9+O(5^N))^(1/3), 5^N)))), N)
(Ruby)
def A309602(n)
ary = [9]
a = 9
n.times{|i|
b = (a + 7 * (9 * a ** 3 - 71)) % (10 ** (i + 2))
ary << (b - a) / (10 ** (i + 1))
a = b
}
ary
end
p A309602(100)
CROSSREFS
Sequence in context: A256854 A182552 A021985 * A197832 A154688 A127794
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 09 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 09:47 EDT 2024. Contains 371779 sequences. (Running on oeis4.)