Odd squarefree semiprimes: Difference between revisions

m
Line 1,169:
}
 
def semiPrimes(limit: Int): Seq[Int] = { // odd and, squarefree generator
def iter(primeList: Seq[Int], acc: Seq[Int]): Seq[Int] = {
val (start, primeList1) = (primeList.head, primeList.tail)
64

edits