login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A023963
First digit after decimal point of 4th root of n.
1
0, 1, 3, 4, 4, 5, 6, 6, 7, 7, 8, 8, 8, 9, 9, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
OFFSET
1,3
LINKS
MATHEMATICA
Array[ Function[ n, RealDigits[ N[ Power[ n, 1/4 ], 10 ], 10 ]// (#[ [ 1, #[ [ 2 ] ]+1 ] ])& ], 110 ]
PROG
(Python)
from sympy import integer_nthroot
def A023963(n): return integer_nthroot(n*10**4, 4)[0]%10 # Chai Wah Wu, Feb 27 2023
CROSSREFS
Sequence in context: A262872 A257923 A288178 * A121500 A182230 A113455
KEYWORD
nonn,base
STATUS
approved