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.

A351680 Discriminants of imaginary quadratic fields with class number 42 (negated).

Original entry on oeis.org

1959, 2183, 2911, 3039, 3176, 3687, 3831, 4039, 4103, 4184, 4735, 4904, 4952, 5288, 5935, 5959, 6179, 6452, 6487, 6611, 6623, 6632, 6836, 7447, 7604, 7811, 7892, 7988, 8459, 8552, 8579, 8744, 8852, 9368, 9428, 9607, 10231, 10643, 10772, 10996, 11023, 11099
Offset: 1

Views

Author

Andy Huchala, Mar 28 2022

Keywords

Comments

Sequence contains 339 terms; largest is 280267.
The class group of Q[sqrt(-d)] is isomorphic to C_42 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] == 42]