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.

Showing 1-2 of 2 results.

A003644 Discriminants of the known imaginary quadratic fields with 1 class per genus (a finite sequence).

Original entry on oeis.org

3, 4, 7, 8, 11, 15, 19, 20, 24, 35, 40, 43, 51, 52, 67, 84, 88, 91, 115, 120, 123, 132, 148, 163, 168, 187, 195, 228, 232, 235, 267, 280, 312, 340, 372, 403, 408, 420, 427, 435, 483, 520, 532, 555, 595, 627, 660, 708, 715, 760, 795, 840, 1012, 1092, 1155, 1320, 1380, 1428, 1435, 1540, 1848, 1995, 3003, 3315, 5460
Offset: 1

Views

Author

Keywords

Comments

This is the complete table from Borevich and Shafarevich.
If the GRH is true, the list contains the discriminants of all imaginary quadratic fields with 1 class per genus; otherwise, there may be one more such discriminant not on the list. (See Weinberger.) - Everett W. Howe, Aug 01 2014

References

  • Z. I. Borevich and I. R. Shafarevich, Number Theory. Academic Press, NY, 1966, pp. 425-430.
  • L. E. Dickson, Introduction to the Theory of Numbers. Dover, NY, 1957, p. 85.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • PARI
    ok(n)={isfundamental(-n) && !#select(k->k<>2, quadclassunit(-n).cyc)} \\ Andrew Howroyd, Jul 20 2018

Extensions

Clarified name (added "the known") - Everett W. Howe, Aug 01 2014

A330162 For imaginary fundamental discriminants -d, define b(-d) to be the smallest prime p such that Kronecker(-d,p) = 1. Sequence gives d such that b(-d)^3 > d/4 > b(-d)^2.

Original entry on oeis.org

23, 31, 56, 59, 68, 83, 104, 107, 136, 139, 184, 211, 219, 244, 259, 264, 276, 283, 291, 292, 307, 328, 331, 339, 355, 376, 379, 388, 411, 424, 436, 451, 456, 472, 499, 523, 547, 552, 568, 580, 628, 643, 667, 712, 723, 763, 772, 787, 808, 820, 835, 843, 852, 868, 883
Offset: 1

Views

Author

Jianing Song, Dec 04 2019

Keywords

Comments

It seems that this sequence contains 810 terms, the largest being 1154008. In general, it seems that for any t > 0, b(-d) = o(d^t) as -d -> -oo.
For fundamental discriminants -d, we want to determine the size of b(-d), i.e., the size of the smallest prime that decomposes in Q[sqrt(-d)].
Let K = Q[sqrt(-d)], O_K be the ring of integers over K, so O_K is a Dedekind domain. Let E(-d) be the exponent of the ideal class group of O_K (the exponent of a group G is the smallest e > 0 such that x^e = I for all x in G, where I is the group identity).
If Kronecker(-d,p) = 1, it is well-known that p*O_K is the product of two distinct prime ideals of O_K, say, p*O_K = I*I'. By the property of the ideal class group of Q[sqrt(-d)], I^(k*e) must be principal, e = E(-d). Let t*O_K = I^(k*e), then t/p is not an algebraic integer, and the norm of t is p^e. Define f(x,y) = x^2 + (d/4)*y^2 if -d == 0 (mod 4), x^2 + x*y + ((d+1)/4)*y^2 otherwise, it is easy to see f(x,y) = p^(k*e) has integral solutions (x,y) such that gcd(x,y) = 1.
If f(x,y) = p^(k*e) < d, then |y| = 1, so 4*p^(k*e) - d must be a (positive) square. Setting k = 1 gives b(-d) > (d/4)^(1/e) (and furthermore we have: if Kronecker(-d,p) = 1 and p^(k*e) < d, then k = 1, or (p,k,e,d) = (2,2,1,7), (3,2,1,11)).
If E(-d) = 3, then d is in this sequence.
We also have the following observations (not proved):
(a) if e = 2 (i.e., d is in A003644\A014602 = A316743), then b(-d) < d/4;
(b) if e > 2, then b(-d) < sqrt(d/4) (it can be proved by using deeper algebraic number theory that b(-d) < 2*sqrt(d)/Pi).
If these observations are true, this sequence is also the list of d such that b(-d) > (d/4)^(1/3) and d is not in A003644.
Note that 5460 is conjectured to be the largest term in A003644. Therefore, it seems that b(-d) < sqrt(d/4) for all d > 5460; it seems that b(-d) < (d/4)^(1/3) for all d > 1154008.
Among the known terms:
(1) the term d with the largest E(-d) is d = 998328 with E(-d) = 66.
(2) the term d with the largest b(-d) is d = 656755 with b(-d) = 79.
(3) the largest prime is d = 90787 with E(-d) = 23.

Examples

			The smallest prime p such that Kronecker(-499,p) = 1 is p = 5, and 5^3 > 499/4 > 5^2, so 499 is a term.
		

Crossrefs

Programs

  • PARI
    b(D)=forprime(p=2, oo, if(kronecker(D, p)>0, return(p)))
    isA330162(d) = (d>0) && isfundamental(-d) && b(-d) > sqrtn(d/4,3) && b(-d) < sqrt(d/4)
Showing 1-2 of 2 results.