OFFSET
1,1
COMMENTS
Discriminants of real quadratic fields with class number 1.
Other than the term 8, every term is of one of the three following forms: (i) p, where p is a prime congruent to 1 modulo 4; (ii) 4p or 8p, where p is a prime congruent to 3 modulo 4; (iii) pq, where p, q are distinct primes congruent to 3 modulo 4. In fact, for a positive fundamental discriminant d, the class number of the real quadratic field of discriminant d is odd if and only if d = 8 or is of the form (i), (ii) or (iii). See Theorem 1 and Theorem 2 of Ezra Brown's link. - Jianing Song, Feb 24 2021
REFERENCES
D. A. Buell, Binary Quadratic Forms. Springer-Verlag, NY, 1989, pp. 224-241.
H. Cohen, Advanced Topics in Computational Number Theory, Springer, 2000, p. 534.
H. Hasse, Number Theory, Springer-Verlag, NY, 1980, p. 576.
Pohst and Zassenhaus, Algorithmic Algebraic Number Theory, Cambridge Univ. Press, page 432.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
Ezra Brown, Class numbers of real quadratic number fields, Trans. Amer. Math. Soc. 190 (1974), 99-107.
Henri Cohen and X.-F. Roblot, Computing the Hilbert Class Field of Real Quadratic Fields, Math. Comp. 69 (2000), 1229-1244.
Eric Weisstein's World of Mathematics, Class Number
MATHEMATICA
maxDisc = 269; t = Table[ {NumberFieldDiscriminant[ Sqrt[n] ], NumberFieldClassNumber[ Sqrt[n] ]}, {n, Select[ Range[2, maxDisc], SquareFreeQ] } ]; Union[ Select[ t, #[[2]] == 1 && #[[1]] <= maxDisc & ][[All, 1]]] (* Jean-François Alcover, Jan 24 2012 *)
PROG
(Sage)
is_fund_and_qfbcn_1 = lambda n: is_fundamental_discriminant(n) and QuadraticField(n, 'a').class_number() == 1
A003656 = lambda n: filter(is_fund_and_qfbcn_1, (1, 2, .., n))
A003656(270) # Peter Luschny, Aug 10 2014
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)hotmail.com), May 15 2002
STATUS
approved