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.

A046005 Discriminants of imaginary quadratic fields with class number 8 (negated).

Original entry on oeis.org

95, 111, 164, 183, 248, 260, 264, 276, 295, 299, 308, 371, 376, 395, 420, 452, 456, 548, 552, 564, 579, 580, 583, 616, 632, 651, 660, 712, 820, 840, 852, 868, 904, 915, 939, 952, 979, 987, 995, 1032, 1043, 1060, 1092, 1128, 1131, 1155, 1195, 1204
Offset: 1

Views

Author

Keywords

Comments

131 discriminants in this sequence (almost certainly but not proved).

Crossrefs

Programs

  • Mathematica
    Union[(-NumberFieldDiscriminant[Sqrt[-#]] &) /@ Select[Range[6400], NumberFieldClassNumber[Sqrt[-#]] == 8 &]] (* Jean-François Alcover, Jun 27 2012 *)
  • PARI
    ok(n)={isfundamental(-n) && quadclassunit(-n).no == 8} \\ Andrew Howroyd, Jul 20 2018
    
  • Sage
    [n for n in (1..6500) if is_fundamental_discriminant(-n) and QuadraticField(-n, 'a').class_number()==8] # G. C. Greubel, Mar 01 2019