login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A243706 Primes represented by the indefinite quadratic form 3x^2+13xy-3y^2. 1
3, 7, 13, 17, 47, 53, 67, 97, 137, 157, 167, 193, 227, 233, 257, 263, 293, 313, 317, 347, 383, 397, 457, 463, 503, 547, 557, 563, 577, 587, 593, 643, 653, 673, 683, 727, 757, 773, 823, 827, 883, 887, 937, 967, 977, 997, 1013, 1063, 1093 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Discriminant 205.
12*a(n) has the form z^2 - 205*y^2, where z = 6*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(3, 13, -3, 600)
CROSSREFS
Primes in A243705.
Sequence in context: A214782 A032437 A076746 * A214696 A291661 A310256
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 17 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 12:44 EDT 2024. Contains 371913 sequences. (Running on oeis4.)