A141182 Primes of the form x^2+6*x*y-2*y^2 (as well as of the form 5*x^2+8*x*y+y^2).
5, 37, 53, 89, 97, 113, 137, 157, 181, 229, 257, 269, 313, 317, 353, 389, 397, 401, 421, 433, 449, 509, 521, 577, 617, 641, 653, 661, 709, 757, 773, 797, 829, 881, 929, 977, 1013, 1021, 1049, 1061, 1093, 1109, 1153, 1181, 1193, 1213, 1237, 1277, 1301, 1321, 1373
Offset: 1
Keywords
Examples
a(3)=53 because we can write 53=5^2+6*5*1-2*1^2 (or 53=5*1^2+8*1*4+4^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]], MatchQ[Mod[#, 44], Alternatives[1, 5, 9, 25, 37]] &] (* Jean-François Alcover, Oct 28 2016 *)
-
PARI
isA141182(p) = p%4==1 & issquare(Mod(p,11)) \\ M. F. Hasler, Mar 20 2011
Comments