login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A094612 Fundamental discriminants of real quadratic number fields with class number 3. 15
229, 257, 316, 321, 469, 473, 568, 733, 761, 892, 993, 1016, 1101, 1229, 1257, 1304, 1373, 1436, 1489, 1509, 1772, 1901, 1929, 1957, 2021, 2089, 2101, 2177, 2213, 2429, 2557, 2589, 2636, 2677, 2713, 2777, 2857, 2917, 2981, 3173, 3221, 3229, 3261, 3356, 3569 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Class Number
MATHEMATICA
Select[Range[3569], NumberFieldDiscriminant@Sqrt[#] == # && NumberFieldClassNumber@Sqrt[#] == 3 &] (* Arkadiusz Wesolowski, Oct 22 2012 *)
PROG
(PARI) {ok(n) = n>10 && isfundamental(n) && qfbclassno(n)==3};
for(n=1, 3600, if(ok(n)==1, print1(n, ", "))) \\ G. C. Greubel, Mar 01 2019
(Sage)
is_fund_and_qfbcn_1 = lambda n: is_fundamental_discriminant(n) and QuadraticField(n, 'a').class_number() == 3;
A094612 = lambda n: filter(is_fund_and_qfbcn_1, (1, 2, .., n));
A094612(3700) # G. C. Greubel, Mar 01 2019
CROSSREFS
Sequence in context: A342368 A250235 A250236 * A250237 A350165 A112847
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 14 2004
EXTENSIONS
Edited by N. J. A. Sloane, May 01 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)