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”).

A072904
Nonsquares m such that the discriminant of the quadratic field Q(sqrt(m)) < m.
2
18, 20, 27, 32, 45, 48, 50, 52, 54, 63, 68, 72, 75, 80, 84, 90, 96, 98, 99, 108, 112, 116, 117, 125, 126, 128, 132, 135, 147, 148, 150, 153, 160, 162, 164, 171, 175, 176, 180, 189, 192, 198, 200, 207, 208, 212, 216, 224, 228, 234, 240, 242, 243, 244, 245, 250
OFFSET
1,1
LINKS
FORMULA
a(n) appears to be asymptotic to C*n with C = 3.4... .
MATHEMATICA
Select[Range[250], !IntegerQ@Sqrt[#] && NumberFieldDiscriminant[Sqrt[#]] < # &] (* Amiram Eldar, Jun 24 2022 *)
PROG
(PARI) isok(m) = !issquare(m) && (quaddisc(m) < m); \\ Michel Marcus, Feb 18 2021
CROSSREFS
Cf. A037449.
Intersection of A000037 and A072903.
Sequence in context: A295745 A328934 A255848 * A268284 A367268 A054279
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 10 2002
STATUS
approved