A141172 Primes of the form 2*x^2+2*x*y-3*y^2 (as well as of the form 2*x^2+6*x*y+y^2).
2, 29, 37, 53, 109, 113, 137, 149, 193, 197, 233, 277, 281, 317, 337, 373, 389, 401, 421, 449, 457, 541, 557, 569, 613, 617, 641, 653, 673, 701, 709, 757, 809, 821, 877, 953, 977, 1009, 1033, 1061, 1093, 1117, 1129, 1201, 1213, 1229, 1289, 1297, 1373, 1381, 1409, 1429, 1453, 1481, 1493
Offset: 1
Keywords
Examples
a(2)=29 because we can write 29=2*4^2+2*4*3-3*3^2 (or 29=2*1^2+6*1*3+3^2).
References
- Z. I. Borevich and I. R. Shafarevich, Number Theory.
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 || MatchQ[Mod[#, 28], 1|9|25]&] (* Jean-François Alcover, Oct 28 2016 *)
Comments