login

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”).

A172142
Primes of form p^q+q^p+1, where p, q are also primes.
1
2531, 94933, 48989177, 19088056323407827075424486287615602692671561637, 10027860709531471276608129899567499096303854889970269316268113271, 88537996291958256446260440678593208943077817551131498658191653913030830300434060998128240895267
OFFSET
1,1
EXAMPLE
a(1) = 3^7+7^3+1 = 2531;
a(2) = 5^7+7^5+1 = 94933;
a(3) = 5^11+11^5+1 = 48989177;
a(4) = 3^97+97^3+1 = 19088056323407827075424486287615602692671561637;
a(5) = 23^47+47^23+1.
MATHEMATICA
a[n_] := Block[{}, For[l = {}; i = 1, i < n, i++, For[j = i, j < n, j++, p = Prime[i]; q = Prime[j]; x = p^q + q^p + 1; If[PrimeQ[x], l = Append[l, x]]]]; Print[Sort[Union[l]]]]; a[50]
Union[Select[First[#]^Last[#]+Last[#]^First[#]+1&/@Tuples[Prime[Range[50]], 2], PrimeQ]] (* Harvey P. Dale, Oct 17 2014 &)
CROSSREFS
Cf. A118097.
Sequence in context: A369521 A203440 A231968 * A206596 A334932 A254021
KEYWORD
nonn
AUTHOR
Cheng Zhang (cz1(AT)rice.edu), Jan 26 2010
STATUS
approved