A141176 Primes of the form 2*x^2 + 3*x*y - 3*y^2 (as well as of the form 6*x^2 + 9*x*y + 2*y^2).
2, 11, 17, 29, 41, 83, 101, 107, 131, 149, 167, 173, 197, 227, 233, 239, 263, 281, 293, 347, 359, 431, 461, 479, 491, 503, 557, 563, 569, 593, 659, 677, 701, 743, 761, 809, 821, 827, 857, 887, 941, 953, 1019, 1031, 1091, 1097, 1151, 1163, 1187, 1217, 1223, 1229, 1283, 1289, 1319, 1361
Offset: 1
Keywords
Examples
a(3) = 17 because we can write 17 = 2*4^2 + 3*4*5 - 3*5^2 (or 17 = 6*1^2 + 9*1*1 + 2*1^2).
References
- Z. I. Borevich and I. R. Shafarevich, Number Theory.
- D. B. Zagier, Zetafunktionen und quadratische Körper: Eine Einführung in die höhere Zahlentheorie, Springer-Verlag Berlin Heidelberg, 1981, DOI 10.1007/978-3-642-61829-1.
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)
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[500]], # == 11 || MatchQ[Mod[#, 33], Alternatives[2, 8, 17, 29, 32]]&] (* Jean-François Alcover, Oct 28 2016 *)
Comments