cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A243706 Primes represented by the indefinite quadratic form 3x^2+13xy-3y^2.

Original entry on oeis.org

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
Offset: 1

Views

Author

N. J. A. Sloane, Jun 17 2014

Keywords

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]

Crossrefs

Primes in A243705.

Programs

  • 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)