login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A172142 Primes of form p^q+q^p+1, where p, q are also primes. 1

%I #3 Oct 17 2014 16:27:03

%S 2531,94933,48989177,19088056323407827075424486287615602692671561637,

%T 10027860709531471276608129899567499096303854889970269316268113271,

%U 88537996291958256446260440678593208943077817551131498658191653913030830300434060998128240895267

%N Primes of form p^q+q^p+1, where p, q are also primes.

%e 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

%t 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]

%t Union[Select[First[#]^Last[#]+Last[#]^First[#]+1&/@Tuples[Prime[Range[50]],2],PrimeQ]] (* _Harvey P. Dale_, Oct 17 2014 &)

%Y Cf. A118097

%K nonn

%O 1,1

%A Cheng Zhang (cz1(AT)rice.edu), Jan 26 2010

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)