OFFSET
1,3
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
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
KEYWORD
nonn,base
AUTHOR
STATUS
approved