login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A351679
Discriminants of imaginary quadratic fields with class number 41 (negated).
2
1151, 2551, 2719, 3079, 3319, 3511, 6143, 9319, 9467, 10499, 10903, 11047, 11483, 11719, 11987, 12227, 12611, 13567, 14051, 14411, 14887, 14983, 16067, 16187, 19763, 20407, 20771, 21487, 22651, 24971, 25171, 26891, 26987, 27739, 28547, 29059, 29251, 30859
OFFSET
1,1
COMMENTS
Sequence contains 109 terms; largest is 296587.
The class group of Q[sqrt(-d)] is isomorphic to C_41 for all d in this sequence.
LINKS
Mark Watkins, Class numbers of imaginary quadratic fields, Mathematics of Computation, 73, pp. 907-938.
Eric Weisstein's World of Mathematics, Class Number
PROG
(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] == 41]
KEYWORD
nonn,fini,full
AUTHOR
Andy Huchala, Mar 28 2022
STATUS
approved