OFFSET
0,3
EXAMPLE
1 is the smallest number such that 1^0 contains 0 zero times. So a(0) = 1.
15 is the smallest number such that 15^2 contains 2 twice. So a(2) = 15.
261 is the smallest number such that 261^4 contains 4 four times. So a(4) = 261.
PROG
(Python)
def tes(n):
for k in range(1, 10**4):
if(str(k**n).count(str(n))) == n:
return k
n = 0
while n < 10:
print(tes(n), end=', ')
n += 1
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Derek Orr, Jul 01 2014
STATUS
approved