A141183 Primes of the form -x^2+6*x*y+2*y^2 (as well as of the form 7*x^2+10*x*y+2*y^2).
2, 7, 11, 19, 43, 79, 83, 107, 127, 131, 139, 151, 167, 211, 227, 239, 263, 271, 283, 307, 347, 359, 431, 439, 479, 491, 503, 523, 547, 563, 571, 607, 659, 739, 743, 787, 811, 827, 887, 919, 967, 1019, 1031, 1051, 1063, 1091, 1151, 1163, 1187, 1223, 1231, 1283, 1319, 1327
Offset: 1
Keywords
Examples
a(4)=19 because we can write 19= -1^2+6*1*2+2*2^2 (or 19=7*1^2+10*1*1+2*1^2).
References
- Z. I. Borevich and I. R. Shafarevich, Number Theory, Academic Press, NY, 1966.
Links
- Juan Arias-de-Reyna, Table of n, a(n) for n = 1..10000
- N. J. A. Sloane et al., Binary Quadratic Forms and OEIS: Index to related sequences, programs, references. OEIS wiki, June 2014.
- D. B. Zagier, Zetafunktionen und quadratische Körper, Springer, 1981.
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[250]], # == 2 || # == 11 || MatchQ[Mod[#, 44], Alternatives[7, 19, 35, 39, 43]]&] (* Jean-François Alcover, Oct 28 2016 *)
Comments