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

A217717
Primes of the form x^2 + y^2 - 1, where x and y are primes.
1
7, 17, 73, 97, 193, 241, 313, 337, 409, 457, 577, 1009, 1129, 1201, 1249, 1321, 1489, 1657, 1801, 1873, 2017, 2137, 2377, 2521, 2689, 2833, 2857, 3049, 3169, 3217, 3361, 3529, 3697, 3769, 3889, 4057, 4177, 4441, 4513, 4561, 4657, 5209, 5449, 5569, 5689, 5857
OFFSET
1,1
COMMENTS
Unlike primes of the form x^2+y^2 (A045637) which can be redefined as x^2+4, and primes of the form x^2+y^2+1 (A182475) which can be redefined as primes of the form x^2+10, this sequence appears to have no one-variable analog. In the preceding, x and y are prime.
LINKS
Christian N. K. Anderson, Table of n, a(n) for n = 1..10000
EXAMPLE
457 is in the sequence because it is a prime number, and 457 = 13^2 + 17^2 - 1.
MATHEMATICA
mx = 25; Union[Select[Flatten[Table[Prime[a]^2 + Prime[b]^2 - 1, {a, mx}, {b, a, mx}]], # < Prime[mx]^2 && PrimeQ[#] &]] (* T. D. Noe, Mar 29 2013 *)
CROSSREFS
Cf. A045637 (primes of the form p^2+4, where p is prime).
Cf. A182475 (primes of the form p^2+10, where p is prime).
Sequence in context: A216073 A086870 A107693 * A122528 A123206 A035078
KEYWORD
nonn
STATUS
approved