OFFSET
0,3
LINKS
Marco Ripà, Congruence speed of tetration bases ending with 0, arXiv:2402.07929 [math.NT], 2024.
EXAMPLE
PROG
(Python)
def A370255(n):
if n == 0: return 1
m = n
a, b = divmod(m, 10)
while not b:
m = a
a, b = divmod(m, 10)
return m**(10*n) # Chai Wah Wu, Feb 20 2024
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
Marco Ripà, Feb 13 2024
STATUS
approved