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!)
A309698 Digits of the 4-adic integer 3^(1/3). 6
3, 2, 3, 1, 1, 0, 3, 3, 1, 0, 2, 0, 3, 3, 0, 3, 1, 3, 0, 1, 1, 3, 0, 3, 3, 3, 3, 3, 1, 0, 3, 2, 0, 2, 0, 0, 1, 2, 3, 2, 0, 3, 1, 0, 1, 1, 1, 2, 1, 2, 0, 1, 0, 1, 3, 2, 2, 1, 1, 1, 3, 2, 2, 0, 3, 3, 3, 0, 3, 0, 0, 0, 3, 0, 2, 3, 3, 0, 3, 2, 1, 2, 1, 2, 2, 1, 0, 0, 0, 2, 0, 1, 3, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Wikipedia, Hensel's Lemma.
FORMULA
Define the sequence {b(n)} by the recurrence b(0) = 0 and b(1) = 3, b(n) = b(n-1) + b(n-1)^3 - 3 mod 4^n for n > 1, then a(n) = (b(n+1) - b(n))/4^n.
PROG
(PARI) N=100; Vecrev(digits(lift((3+O(2^(2*N)))^(1/3)), 4), N)
(Ruby)
def A309698(n)
ary = [3]
a = 3
n.times{|i|
b = (a + a ** 3 - 3) % (4 ** (i + 2))
ary << (b - a) / (4 ** (i + 1))
a = b
}
ary
end
p A309698(100)
CROSSREFS
Digits of the k-adic integer (k-1)^(1/(k-1)): this sequence (k=4), A309699 (k=6), A309700 (k=8), A225458 (k=10).
Sequence in context: A166592 A103497 A191390 * A369997 A369605 A085747
KEYWORD
nonn,base
AUTHOR
Seiichi Manyama, Aug 13 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 June 5 14:50 EDT 2024. Contains 373107 sequences. (Running on oeis4.)