login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A243704
Primes represented by the indefinite quadratic form -x^2+13xy+9y^2.
1
31, 41, 61, 251, 349, 379, 389, 401, 419, 431, 449, 461, 491, 619, 631, 739, 769, 811, 821, 829, 1009, 1061, 1171, 1181, 1229, 1231, 1279, 1289, 1321, 1361, 1451, 1471, 1499, 1601, 1699, 1721, 1759, 1861, 2081, 2131, 2239, 2339, 2341, 2411, 2551, 2579, 2591, 2789
OFFSET
1,1
COMMENTS
Discriminant 205.
4*a(n) has the form 205*y^2 - z^2, where z = 2*x-13*y. [Bruno Berselli, Jun 20 2014]
LINKS
N. J. A. Sloane et al., Binary Quadratic Forms and OEIS (Index to related sequences, programs, references)
PROG
(PARI)
fc(a, b, c, M) = {
my(t1=List(), t2);
forprime(p=2, prime(M),
t2 = qfbsolve(Qfb(a, b, c), p);
if(t2 != 0, listput(t1, p))
);
Vec(t1)
};
fc(-1, 13, 9, 600)
CROSSREFS
Primes in A243703.
Sequence in context: A040991 A089721 A089442 * A060327 A202286 A285805
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 17 2014
STATUS
approved