Project Euler Problem #7
let naturals = Seq.unfold (fun i -> Some(i, i + 1))
let primes =
naturals 2 |> Seq.filter (fun n ->
seq { 2..int (sqrt (float n)) }
|> Seq.forall (fun x -> n % x <> 0))
Seq.nth 10000 primes
Este explorador ya no se admite.
Actualice a Microsoft Edge para aprovechar las características y actualizaciones de seguridad más recientes, y disponer de soporte técnico.
let naturals = Seq.unfold (fun i -> Some(i, i + 1))
let primes =
naturals 2 |> Seq.filter (fun n ->
seq { 2..int (sqrt (float n)) }
|> Seq.forall (fun x -> n % x <> 0))
Seq.nth 10000 primes