A141123 Primes of the form -x^2+2*x*y+2*y^2 (as well as of the form 3*x^2+6*x*y+2*y^2).
2, 3, 11, 23, 47, 59, 71, 83, 107, 131, 167, 179, 191, 227, 239, 251, 263, 311, 347, 359, 383, 419, 431, 443, 467, 479, 491, 503, 563, 587, 599, 647, 659, 683, 719, 743, 827, 839, 863, 887, 911, 947, 971, 983, 1019, 1031, 1091, 1103, 1151, 1163, 1187, 1223
Offset: 1
Keywords
Examples
a(3) = 11 because we can write 11 = -1^2 + 2*1*2 + 2*2^2 (or 11 = 3*1^2 + 6*1*1 + 2*1^2).
References
- Z. I. Borevich and I. R. Shafarevich, Number Theory. Academic Press, NY, 1966.
- D. B. Zagier, Zetafunktionen und quadratische Körper, Springer, 1981.
Links
- Robert Israel, Table of n, a(n) for n = 1..6514
- N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
Crossrefs
Programs
-
Maple
N:= 2000: S:= NULL: for xx from 1 to floor(2*sqrt(N/3)) do for yy from ceil(sqrt(max(1,3*xx^2-N))) to floor(sqrt(3)*xx) do S:= S, 3*xx^2-yy^2; od od: sort(convert(select(isprime,{S}),list)); # Robert Israel, Jul 20 2020
-
Mathematica
Reap[For[p = 2, p < 2000, p = NextPrime[p], If[FindInstance[p == -x^2 + 2*x*y + 2*y^2, {x, y}, Integers, 1] =!= {}, Print[p]; Sow[p]]]][[2, 1]] (* or: *) Select[Prime[Range[200]], # == 2 || # == 3 || Mod[#, 12] == 11&] (* Jean-François Alcover, Oct 25 2016, updated Oct 29 2016 *)
Extensions
More terms from Colin Barker, Apr 05 2015
Comments