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!)
A162152 Numbers of the form x(x-1) + y(y-1) with x^2 + y^2 being a prime, x,y >= 0. 0
0, 2, 8, 12, 22, 30, 32, 44, 50, 62, 76, 84, 90, 96, 98, 122, 132, 140, 158, 162, 174, 182, 212, 222, 240, 246, 254, 260, 274, 288, 292, 312, 326, 328, 348, 362, 372, 380, 386, 392, 404, 422, 432, 482, 490, 510, 524, 536, 552, 562, 572, 578, 582, 612, 618, 630, 638, 650 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Each term is the sum of two oblong numbers and therefore even.
LINKS
EXAMPLE
a(1)=0 from x=y=1, with 2 a prime.
a(2)=2 from x=1, y=2, with 5 a prime.
a(3)=8 from x=2, y=3, with 13 a prime.
a(4)=12 from x=1, y=4, with 17 a prime.
a(4)=22 from x=2, y=5, with 29 a prime.
a(.)=212 from x=2, y=15, with 229 a prime, or from x=8, y=13, with 233 a prime.
MAPLE
obl := proc(n) n*(n-1) ; end: lim := 800; L := {} ;
for x from 0 to lim/2 do for y from x to lim/2 do if obl(x)+obl(y) <= lim then if isprime(x^2+y^2) then L := L union { obl(x)+obl(y) } ; fi; fi; od: od: sort(L) ; # R. J. Mathar, Sep 11 2009
MATHEMATICA
Take[#[[1]](#[[1]]-1)+#[[2]](#[[2]]-1)&/@Select[Tuples[ Range[ 0, 40], 2], PrimeQ[ Total[#^2]]&]//Union, 60] (* Harvey P. Dale, Jun 07 2020 *)
CROSSREFS
Sequence in context: A280867 A111058 A063622 * A280252 A013654 A359964
KEYWORD
nonn
AUTHOR
Juri-Stepan Gerasimov, Jun 26 2009, Jul 29 2009
EXTENSIONS
Duplicates of 212 and 432 removed, 500 removed by R. J. Mathar, Sep 11 2009
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)