A173909 Numbers n such that prime(n) can be expressed as x+y in at least one way such that x^y + y^x is prime and 1 < x <= y.
3, 5, 7, 9, 10, 15, 17, 18, 20, 24, 29, 32, 39, 42, 47, 55, 57, 62
Offset: 1
Examples
3 is in the sequence because 2^3 + 3^2 is prime and 2+3 = 5 = 3rd prime; 5 is in the sequence because 2^9 + 9^2 is prime and 2+9 = 11 = 5th prime; 7 is in the sequence because 2^15 + 15^2 is prime and 2+15 = 17 = 7th prime; 9 is in the sequence because 2^21 + 21^2 is prime and 2+21 = 23 = 9th prime; 10 is in the sequence because 5^24 + 24^5 is prime and 5+24 = 29 = 10th prime.
Extensions
Constraint "0Jon E. Schoenfield (after comments from R. J. Mathar regarding missing terms and from Wolfdieter Lang noting that the existing definition would make this sequence identical to A000027), Apr 12 2014
Comments