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”).

A370255
(n*10)^(n*10) omitting its rightmost trailing 0's.
1
1, 1, 1048576, 205891132094649, 1208925819614629174706176, 88817841970012523233890533447265625, 48873677980689257489322752273774603865660850176, 143503601609868434285603076356671071740077383739246066639249
OFFSET
0,3
LINKS
FORMULA
a(n) = A004151((n*10)^(n*10)).
a(n) = A004151(n)^(n*10), for n >= 1.
EXAMPLE
a(0) = A004151(0^0) = A004151(1) = 1.
a(2) = 1048576 since 20^20 = 104857600000000000000000000.
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