OFFSET
1,1
COMMENTS
Because 2^x and 2^y add to an integer only if x=y=-1, the set of x and y to be considered reduces to the set of x, y >= 0. - R. J. Mathar, Oct 29 2011
MATHEMATICA
f[x_, y_]:=2^x+2*x+y+2^y; lst={}; Do[Do[p=f[x, y]; If[PrimeQ[p], AppendTo[lst, p]], {y, -5!, 6!}], {x, -5!, 6!}]; Take[Union[lst], 5! ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Joseph Stephan Orlovsky, Jul 06 2009
STATUS
approved