The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A309613 Digits of the 10-adic integer (13/9)^(1/3). 3
3, 9, 6, 9, 6, 6, 2, 5, 6, 6, 5, 7, 4, 8, 2, 6, 1, 5, 2, 3, 5, 4, 9, 5, 1, 2, 1, 5, 3, 6, 9, 7, 1, 6, 7, 5, 5, 3, 7, 6, 4, 9, 5, 3, 1, 7, 9, 8, 0, 4, 4, 5, 7, 1, 2, 1, 3, 3, 4, 9, 1, 0, 1, 7, 6, 1, 9, 8, 0, 4, 1, 3, 7, 6, 7, 1, 2, 2, 0, 1, 1, 5, 4, 9, 2, 5, 2, 8, 9, 7, 5, 0, 9, 1, 4, 5, 4, 9, 7, 3 (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) = 3, b(n) = b(n-1) + 3 * (9 * b(n-1)^3 - 13) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n.
EXAMPLE
3^3 == 7 (mod 10).
93^3 == 57 (mod 10^2).
693^3 == 557 (mod 10^3).
9693^3 == 5557 (mod 10^4).
69693^3 == 55557 (mod 10^5).
669693^3 == 555557 (mod 10^6).
PROG
(PARI) N=100; Vecrev(digits(lift(chinese(Mod((13/9+O(2^N))^(1/3), 2^N), Mod((13/9+O(5^N))^(1/3), 5^N)))), N)
(Ruby)
def A309613(n)
ary = [3]
a = 3
n.times{|i|
b = (a + 3 * (9 * a ** 3 - 13)) % (10 ** (i + 2))
ary << (b - a) / (10 ** (i + 1))
a = b
}
ary
end
p A309613(100)
CROSSREFS
Sequence in context: A331063 A199738 A343864 * A189272 A349403 A131954
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, Aug 10 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 May 15 02:58 EDT 2024. Contains 372536 sequences. (Running on oeis4.)