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