OFFSET
1,3
COMMENTS
In the event of a tie, choose the smaller integer.
EXAMPLE
PROG
(Python)
def a(n):
for k in range(10**5):
if k%10 !=0:
count = 0
for i in range(10):
if str(k**n).count(str(i)) == n:
return i
n = 1
while n < 100:
print(a(n), end=', ')
n+=1
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Derek Orr, May 31 2014
STATUS
approved
