This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A030082 #10 Mar 18 2021 05:44:31 %S A030082 125,1331,24389,205379,226981,300763,357911,389017,912673,1030301, %T A030082 1295029,2571353,3442951,6967871,12008989,12649337,15813251,22188041, %U A030082 30080231,36264691,38272753,41781923,58863869,64481201,90518849,101847563,124251499,158340421,237176659 %N A030082 a(n) = prime^3 and digits of prime appear in a(n). %C A030082 Digits are not counted with multiplicity. - _Chai Wah Wu_, Mar 17 2021 %e A030082 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 %o A030082 (Python) %o A030082 from sympy import prime %o A030082 A030082_list = [] %o A030082 for i in range(1,10**6): %o A030082 p = prime(i) %o A030082 q = p**3 %o A030082 if set(str(p)) <= set(str(q)): %o A030082 A030082_list.append(q) # _Chai Wah Wu_, Mar 17 2021 %Y A030082 Cf. A030078 (cubes of primes). %K A030082 nonn,base %O A030082 1,1 %A A030082 _Patrick De Geest_ %E A030082 More terms from _Chai Wah Wu_, Mar 17 2021