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.

A351675 Discriminants of imaginary quadratic fields with class number 37 (negated).

Original entry on oeis.org

1487, 2447, 3391, 5839, 6367, 8147, 9803, 10739, 12343, 12583, 12967, 14767, 15259, 16927, 18947, 19403, 20011, 20147, 21139, 21587, 22807, 23371, 23627, 26731, 28283, 28307, 31699, 31723, 36691, 37171, 37243, 38371, 39139, 39451, 40531, 41659, 42283, 42443
Offset: 1

Views

Author

Andy Huchala, Mar 27 2022

Keywords

Comments

Sequence contains 85 terms; largest is 158923.
The class group of Q[sqrt(-d)] is isomorphic to C_37 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] == 37]