A330191 For -d == 0, 1 (mod 4), let E(-d) to be the exponent of the class group of binary quadratic forms with discriminant -d, b(-d) to be the smallest prime p such that Kronecker(-d,p) = 1, then sequence gives d such that E(-d) > 2 and b(-d) > sqrt(d/4).
76, 108, 172, 252, 268, 387, 400, 540, 588, 592, 603, 652, 988, 1068, 1072, 1332, 1467, 2088, 2608, 2832, 2907, 3712, 4075, 5868
Offset: 1
Examples
76 is in this sequence because the class group of binary quadratic forms with discriminant -76 is isomorphic to C_3 (generated by 4x^2 - x*y + 5y^2), and the smallest prime p such that Kronecker(-76,p) = 1 is p = 5 > sqrt(76/4). 387 is in this sequence because the class group of binary quadratic forms with discriminant -387 is isomorphic to C_4 (generated by 9x^2 - 3x*y + 11y^2), and the smallest prime p such that Kronecker(-387,p) = 1 is p = 11 > sqrt(387/4). 5868 is in this sequence because the class group of binary quadratic forms with discriminant -5868 is isomorphic to C_12 (generated by 36x^2 - 6x*y + 41y^2), and the smallest prime p such that Kronecker(-5868,p) = 1 is p = 41 > sqrt(5868/4).
Programs
-
PARI
isok(d) = (d>0) && (-d)%4<=1 && (quadclassunit(-d)[2]!=[]&&quadclassunit(-d)[2][1]!=2) && !sum(p=1, sqrt(d/4), isprime(p)&&kronecker(-d,p)==1)
Comments