A139497 Primes of the form x^2 + 15x*y + y^2 for x and y nonnegative.
17, 101, 103, 127, 179, 251, 263, 373, 433, 563, 599, 647, 701, 757, 797, 937, 953, 971, 1063, 1069, 1223, 1277, 1427, 1453, 1481, 1483, 1531, 1543, 1583, 1667, 1699, 1759, 1811, 1871, 2053, 2083, 2089, 2141, 2297, 2393, 2473, 2549, 2837, 2843, 2909, 2939
Offset: 1
Keywords
Links
- N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
Crossrefs
Programs
-
Mathematica
a = {}; w = 15; k = 1; Do[Do[If[PrimeQ[n^2 + w*n*m + k*m^2], AppendTo[a, n^2 + w*n*m + k*m^2]], {n, m, 400}], {m, 1, 400}]; Union[a] (*Artur Jasinski*)