login
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 2*d=(s+t)*(s-t) has a finite set of solutions -- found by scanning the divisors of 2*d (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 by Zak Seidov and R. J. Mathar, Jul 19 2010
STATUS
approved