OFFSET
1,1
COMMENTS
Up to 10^10, there are only 108 distinct-digit prime powers of prime numbers; the last one being 2^29 = 536870912.
LINKS
Ray Chandler, Table of n, a(n) for n = 1..108 (full sequence)
MATHEMATICA
pp = Sort[ Flatten[ Table[ Prime[n]^Prime[i], {n, 1, PrimePi[ Sqrt[10^10]]}, {i, 1, PrimePi[ Floor[ Log[ Prime[n], 10^10]]]}]]]; a = {}; Do[ d = IntegerDigits[ pp[[n]]]; If[ Length[d] == Length[ Union[d]], a = Append[a, pp[[n]]]], {n, 1, 9965}]; a
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Zak Seidov, Oct 26 2002
EXTENSIONS
Edited by Robert G. Wilson v, Oct 31 2002
STATUS
approved