OFFSET
1,1
COMMENTS
Primes in A111116.
No further terms up to 10^9. - Felix Fröhlich, Jan 04 2015
No further terms up to 10^10. - Chai Wah Wu, Jan 06 2015
No further terms up to 2.5*10^13 - Giovanni Resta, Jun 01 2015
No further terms up to 10^19 (via A111116). - Michael S. Branicky, Jan 05 2022
EXAMPLE
2 and 2^4=16 have no digits in common, hence 2 is in the sequence.
MATHEMATICA
Select[Prime[Range[1000000]], Intersection[IntegerDigits[#], IntegerDigits[#^4]]=={} &]
PROG
(PARI) forprime(p=1, 1e9, dip=digits(p); dipf=digits(p^4); sharedi=0; for(i=1, #dip, for(j=1, #dipf, if(dip[i]==dipf[j], sharedi++; break({2})))); if(sharedi==0, print1(p, ", "))) \\ Felix Fröhlich, Jan 04 2015
(Python)
from sympy import isprime
A253574_list = [n for n in range(1, 10**6) if set(str(n)) & set(str(n**4)) == set() and isprime(n)]
# Chai Wah Wu, Jan 06 2015
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Vincenzo Librandi, Jan 04 2015
EXTENSIONS
a(20)-a(23) from Felix Fröhlich, Jan 04 2015
STATUS
approved