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!)
A225409 Digits of the 10-adic integers (-9)^(1/3). 8
1, 3, 4, 9, 3, 3, 6, 5, 1, 3, 3, 9, 5, 1, 4, 5, 4, 0, 5, 4, 8, 8, 0, 5, 9, 3, 9, 1, 8, 6, 2, 9, 3, 3, 0, 5, 1, 6, 0, 0, 6, 9, 7, 5, 7, 9, 6, 4, 0, 1, 3, 4, 4, 9, 0, 3, 2, 2, 5, 1, 9, 2, 5, 3, 8, 9, 6, 7, 0, 1, 4, 1, 7, 8, 4, 2, 9, 0, 9, 0, 1, 1, 8, 3, 9, 3, 1, 3, 9, 6, 0, 4, 9, 0, 0, 4, 3, 4, 6, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
This is the 10's complement of A225406.
LINKS
FORMULA
Define the sequence {b(n)} by the recurrence b(0) = 0 and b(1) = 1, b(n) = b(n-1) + 3 * (b(n-1)^3 + 9) mod 10^n for n > 1, then a(n) = (b(n+1) - b(n))/10^n. - Seiichi Manyama, Aug 13 2019
EXAMPLE
1^3 == -9 (mod 10).
31^3 == -9 (mod 10^2).
431^3 == -9 (mod 10^3).
9431^3 == -9 (mod 10^4).
39431^3 == -9 (mod 10^5).
339431^3 == -9 (mod 10^6).
PROG
(PARI) n=0; for(i=1, 100, m=(10^i-9); for(x=0, 9, if(((n+(x*10^(i-1)))^3)%(10^i)==m, n=n+(x*10^(i-1)); print1(x", "); break)))
(PARI) Vecrev(digits(truncate((-9+O(10^100))^(1/3)))) \\ Seiichi Manyama, Aug 04 2019
(PARI) N=100; Vecrev(digits(lift(chinese(Mod((-9+O(2^N))^(1/3), 2^N), Mod((-9+O(5^N))^(1/3), 5^N)))), N) \\ Seiichi Manyama, Aug 04 2019
(Ruby)
def A225409(n)
ary = [1]
a = 1
n.times{|i|
b = (a + 3 * (a ** 3 + 9)) % (10 ** (i + 2))
ary << (b - a) / (10 ** (i + 1))
a = b
}
ary
end
p A225409(100) # Seiichi Manyama, Aug 13 2019
CROSSREFS
Cf. A309600,
Digits of 10-adic integers:
A153042 ((-1/9)^(1/3));
A225406 ( 9^(1/3));
A225412 ( (1/9)^(1/3)).
Sequence in context: A290373 A122791 A011429 * A083437 A011292 A021745
KEYWORD
nonn,base
AUTHOR
Aswini Vaidyanathan, May 07 2013
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 March 29 06:44 EDT 2024. Contains 371265 sequences. (Running on oeis4.)