[go: up one dir, main page]

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

A179484
Primes p such that p+-180 are squares.
0
181, 349, 2029, 8101
OFFSET
1,1
COMMENTS
Sequences of this type searching for p+d=s^2, p-d=t^2 (here: d=180) are finite because the difference 2d=(s+t)(s-t) has a finite set of solutions -- found by scanning the divisors of 2d (see A060829, A061409). [R. J. Mathar, Jul 20 2010]
EXAMPLE
181-180=1^2;181+180=19^2;349-180=13^2,349+180=23^2;2029-180=43^2,2029+180=47^2;8101-180=89^2,8101+180=91^2;
MATHEMATICA
q=180; Select[Table[Prime[n], {n, 3*9!}], IntegerQ[Sqrt[ #-q]]&&IntegerQ[Sqrt[ #+q]]&]
CROSSREFS
Sequence in context: A142920 A142058 A138397 * A142258 A323192 A142030
KEYWORD
nonn,fini,full
AUTHOR
EXTENSIONS
keyword:fini,full inserted - Zak Seidov and R. J. Mathar, Jul 19 2010
STATUS
approved