OFFSET
1,1
COMMENTS
This sequence lists the values occurring in A162486.
See the main entry A094133 for more information, links and references.
Some terms could appear more than once, such as 114, 318 & 590. - Robert G. Wilson v, Aug 17 2009
EXAMPLE
The least x such that x^y + y^x is prime for some y>1, y<x is a(1)=3, the smallest such y is a(1)=2, yielding the prime A162490(1) = 9 + 8 = 17.
MATHEMATICA
lst = {}; Do[ If[ PrimeQ[x^y + y^x], AppendTo[lst, x]], {x, 3, 680}, {y, 2, x - 1}]; Union@ lst (* Robert G. Wilson v, Aug 17 2009 *)
PROG
(PARI) for(i=3, 999, for(j=2, i-1, is/*pseudo*/prime(i^j+j^i)|next; print1(i", "); break))
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Jul 04 2009
EXTENSIONS
More terms from Robert G. Wilson v, Aug 17 2009
STATUS
approved