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!)
A182288 Primes of form a^2+b^2 such that |a|+|b| is prime of the form 4k+3. 1
5, 29, 37, 61, 73, 101, 181, 193, 241, 269, 277, 293, 349, 409, 521, 541, 593, 661, 701, 929, 937, 1009, 1069, 1109, 1117, 1129, 1217, 1237, 1249, 1289, 1609, 1741, 1753, 1789, 1801, 2029, 2053, 2161, 2221, 2269, 2357, 2389, 2521, 2557, 2609, 2633, 2741, 2753 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
The prime 29=5^2+2^2 such that 5+2=7 is prime of form 4k+3.
MATHEMATICA
nn = 60; t = {}; Do[p1 = a^2 + b^2; p2 = a + b; If[p1 < nn^2 && PrimeQ[p1] && Mod[p2, 4] == 3 && PrimeQ[p2], AppendTo[t, p1]], {a, nn}, {b, a}]; Sort[t] (* T. D. Noe, Apr 23 2012 *)
PROG
(PARI) list(lim)=my(v=List(), t); for(a=1, sqrt(lim), forstep(b=(2-a)%4+1, min(a, sqrt(lim-a^2)), 4, if(isprime(a+b)&&isprime(t=a^2+b^2), listput(v, t)))); vecsort(Vec(v)) \\ Charles R Greathouse IV, Apr 24 2012
CROSSREFS
Cf. A099332.
Sequence in context: A096696 A115279 A279393 * A087879 A091729 A033205
KEYWORD
nonn
AUTHOR
Thomas Ordowski, Apr 23 2012
EXTENSIONS
Extended by T. D. Noe, Apr 23 2012
STATUS
approved

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 September 11 01:27 EDT 2024. Contains 375813 sequences. (Running on oeis4.)