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!)
A205726 Number of semiprimes <= n^2. 4
0, 1, 3, 6, 9, 13, 17, 22, 26, 34, 40, 48, 56, 62, 75, 82, 90, 103, 114, 126, 135, 149, 164, 179, 190, 202, 220, 236, 253, 270, 289, 304, 320, 340, 360, 381, 404, 425, 443, 462, 484, 508, 533, 556, 581, 604, 634, 655, 678, 709, 738, 761, 783, 813, 846, 881 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
See A205727 and A205728 for related sequences and relationship to Goldbach conjecture.
LINKS
FORMULA
a(n) = A072000(A000290(n)). - Michel Marcus, Sep 02 2013
MATHEMATICA
SemiPrimeQ[n_Integer] := If[Abs[n] < 2, False, (2 == Plus @@ Transpose[FactorInteger[Abs[n]]][[2]])]; nn = 100; t = Select[Range[nn^2], SemiPrimeQ]; Table[Length[Select[t, # <= n^2 &]], {n, nn}] (* T. D. Noe, Jan 30 2012 *)
Module[{nn=60, sp}, sp=Accumulate[Table[If[PrimeOmega[n]==2, 1, 0], {n, nn^2}]]; Table[sp[[i^2]], {i, nn}]] (* Harvey P. Dale, May 29 2014 *)
CROSSREFS
Sequence in context: A256966 A280944 A330321 * A002815 A342711 A109512
KEYWORD
nonn
AUTHOR
Keith Backman, Jan 30 2012
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)