Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #21 Dec 01 2014 10:53:27
%S 5,17,97,257,337,641,881,2417,2657,4177,4721,6577,10657,14657,14897,
%T 28817,54721,65537,65617,66161,80177,83537,83777,130337,134417,149057,
%U 260017,279857,280097,283937,394721,531457,596977,1049201,1050977,1055137,1178897
%N Primes of the form 4^x + y^4 with x, y > 0.
%C Subsequence of A250481. Also, except for the first term, subsequence of A002645.
%e 257 is in this sequence because 4^4+1^4=257.
%e 881 is in this sequence because 4^4+5^4=881.
%t f[x_, y_]:= 4^x + y^4; lst={}; Do[p=f[x, y]; If[PrimeQ[p], AppendTo[lst, p]], {y, 50}, {x, 50}]; Take[Union[lst], 50]
%Y Cf. A250545.
%Y Cf. similar sequences listed in A250481.
%K nonn,less
%O 1,1
%A _Vincenzo Librandi_, Nov 27 2014