A141192 Primes of the form 3*x^2+3*x*y-4*y^2 (as well as of the form 8*x^2+11*x*y+2*y^2).
2, 3, 29, 41, 53, 59, 71, 89, 107, 113, 167, 173, 179, 227, 257, 269, 281, 293, 317, 383, 401, 431, 449, 509, 521, 563, 569, 599, 641, 659, 677, 683, 743, 773, 797, 827, 839, 857, 863, 887, 911, 941, 953, 971, 977, 983, 1019, 1091, 1097, 1181, 1193, 1229, 1283, 1307, 1319
Offset: 1
Keywords
Examples
a(6)=59 because we can write 59=3*7^2+3*7*8-4*8^2 (or 59=8*1^2+11*1*3+2*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)
- D. B. Zagier, Zetafunktionen und quadratische Körper, Springer, 1981.
Crossrefs
Programs
-
Mathematica
Select[Prime[Range[250]], # == 3 || MatchQ[Mod[#, 57], Alternatives[2, 8, 14, 29, 32, 41, 50, 53, 56]]&] (* Jean-François Alcover, Oct 28 2016 *)
Comments