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!)
A349202 Numbers k of the form (x + y)*(x^2 + y^2) such that (x + y) and (x^2 + y^2) are primes. 3

%I #11 Dec 25 2021 02:37:14

%S 4,15,65,85,203,259,671,803,1111,1157,1261,1417,2533,2669,3439,3667,

%T 3893,4369,4579,5567,6187,6371,8027,9407,12209,12557,13369,16151,

%U 16771,17429,18383,18589,20491,21257,21731,26233,28453,29489,30673,34973,36121,36889

%N Numbers k of the form (x + y)*(x^2 + y^2) such that (x + y) and (x^2 + y^2) are primes.

%H Peter Luschny, <a href="/A349202/b349202.txt">Table of n, a(n) for n = 1..1200</a>

%F Intersection of A001358 and A348897.

%e 1157 is in this sequence because 1157 = (5 + 8)*(5^2 + 8^2) = 13*89.

%o (Julia) # Returns the terms less than or equal to b^3.

%o using Nemo

%o function A349202List(b)

%o b3 = b^3; R = Int[]

%o for n in 1:b

%o for k in 0:n

%o a = (n + k) * (n^2 + k^2)

%o a > b3 && break

%o isprime(n+k) && isprime(n^2 + k^2) && push!(R, a)

%o end end

%o sort(R) end

%o A349202List(34) |> println

%Y Cf. A001358, A348897.

%K nonn

%O 1,1

%A _Peter Luschny_, Nov 11 2021

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 August 9 15:46 EDT 2024. Contains 375044 sequences. (Running on oeis4.)