OFFSET
1,1
COMMENTS
Digits are not counted with multiplicity. - Chai Wah Wu, Mar 17 2021
EXAMPLE
a(13) = 3442951 = 151^3. 151 is prime and the digits of 151, '1' and '5' are digits of a(13). - Chai Wah Wu, Mar 17 2021
PROG
(Python)
from sympy import prime
A030082_list = []
for i in range(1, 10**6):
p = prime(i)
q = p**3
if set(str(p)) <= set(str(q)):
A030082_list.append(q) # Chai Wah Wu, Mar 17 2021
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
More terms from Chai Wah Wu, Mar 17 2021
STATUS
approved