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.

A351668 Discriminants of imaginary quadratic fields with class number 30 (negated).

Original entry on oeis.org

671, 815, 1007, 1844, 2036, 2071, 2191, 2264, 2319, 2599, 2708, 3188, 3223, 3284, 3439, 3991, 4087, 4276, 4696, 4835, 4859, 4979, 5579, 5912, 6107, 6459, 6463, 6488, 6535, 6635, 7087, 7115, 7303, 7576, 7835, 7971, 8259, 8267, 8367, 8483, 8948, 9019, 9076
Offset: 1

Views

Author

Andy Huchala, Mar 24 2022

Keywords

Comments

Sequence contains 255 terms; largest is 134467.
The class group of Q[sqrt(-d)] is isomorphic to C_30 for all d in this sequence.

Crossrefs

Programs

  • Sage
    ls = [(QuadraticField(-n, 'a').discriminant(), QuadraticField(-n, 'a').class_number()) for n in (0..10000) if is_fundamental_discriminant(-n) and not is_square(n)];
    [-a[0] for a in ls if a[1] == 30]