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 A250716 #10 Dec 01 2014 01:52:13 %S A250716 11,17,67,73,89,251,307,521,593,1009,2251,2699,2753,3187,4099,4177, %T A250716 4339,4931,6569,7561,8009,8081,8243,10651,10657,10729,10891,14561, %U A250716 17209,17579,17657,19763,21961,24137,28513,32771,39313,41491,54881,57059,59113 %N A250716 Primes of the form 3^x + y^3 with x, y >0. %e A250716 67 is in this sequence because 67 is prime and 3^1+4^3 = 67. %e A250716 521 is in this sequence because 521 is prime and 3^2+8^3 = 521. %t A250716 f[x_, y_]:= 3^x+y^3; lst={}; Do[p=f[x, y]; If[PrimeQ[p], AppendTo[lst, p]], {y, 50}, {x, 50}];Take[Union[lst], 50] %Y A250716 Cf. A250481, A250483. %K A250716 nonn %O A250716 1,1 %A A250716 _Vincenzo Librandi_, Nov 27 2014