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!)
A114125 a(n) is the 10^n-th semiprime. 5
4, 26, 314, 3595, 40882, 459577, 5109839, 56168169, 611720495, 6609454805, 70937808071, 757060825018, 8040423200947, 85037651263063, 896113850117314, 9413000361625346, 98597629032410971, 1030179406403917981, 10739422018595513973 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Eric Weisstein's World of Mathematics, Semiprime.
MATHEMATICA
fQ[n_] := Plus @@ Last /@ FactorInteger@n == 2; c = 0; k = 2; Do[While[c < 10^n, If[fQ@k, c++ ]; k++ ]; Print[k - 1], {n, 0, 8}]
(* checked by *) SemiPrimePi[n_] := Sum[ PrimePi[n/Prime@i] - i + 1, {i, PrimePi@ Sqrt@n}]
PROG
(Perl) use ntheory ":all"; print "$_ ", nth_semiprime(10**$_), "\n" for 0..15; # Dana Jacobsen, Oct 08 2018
CROSSREFS
Sequence in context: A271613 A271614 A136503 * A063182 A293954 A348117
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Feb 11 2006
EXTENSIONS
a(14) from Donovan Johnson, Sep 27 2010
Corrected a(14), added a(15)-a(18) from Dana Jacobsen, Oct 10 2018
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 19 13:40 EDT 2024. Contains 371792 sequences. (Running on oeis4.)