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!)
A072902 Nonprime numbers m such that the discriminant of the quadratic field Q(sqrt(m)) equals m. 1
1, 8, 12, 21, 24, 28, 33, 40, 44, 56, 57, 60, 65, 69, 76, 77, 85, 88, 92, 93, 104, 105, 120, 124, 129, 133, 136, 140, 141, 145, 152, 156, 161, 165, 168, 172, 177, 184, 185, 188, 201, 204, 205, 209, 213, 217, 220, 221, 232, 236, 237, 248, 249, 253, 264, 265, 268 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A subset of the nonprime numbers (A018252).
Positive fundamental discriminants (A003658) that are not Pythagorean primes (A002144). - Paul Muljadi, Mar 30 2008
LINKS
FORMULA
a(n) appears to be asymptotic to C*n with C = 3.91... .
MATHEMATICA
FundamentalDiscriminantQ[d_] := Module[{m, mod = Mod[d, 4]}, If[mod > 1, Return[False]]; If[mod == 1, Return[ SquareFreeQ[d] && d != 1]]; m = d/4; Return[ SquareFreeQ[m] && Mod[m, 4] > 1]]; Join[{1}, Select[ Range[270], !PrimeQ[#] && FundamentalDiscriminantQ[#]& ]] (* Jean-François Alcover, Jun 05 2012, after Eric W. Weisstein *)
PROG
(PARI) isok(m) = !isprime(m) && (quaddisc(m) == m); \\ Michel Marcus, Feb 18 2021
CROSSREFS
Cf. A037449.
Sequence in context: A354069 A350615 A300065 * A269705 A189322 A105571
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 10 2002
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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)