]> gitweb.factorcode.org Git - factor.git/blob - extra/math/primes/lists/lists.factor
13f314f6bae8778bff5a470cbea7a099b5f3f7c7
[factor.git] / extra / math / primes / lists / lists.factor
1 ! Copyright (C) 2007-2009 Samuel Tardieu.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel lists.lazy math math.primes ;
4 IN: math.primes.lists
5
6 : lprimes ( -- list ) 2 [ next-prime ] lfrom-by ;
7
8 : lprimes-from ( n -- list )
9     dup 3 < [ drop lprimes ] [ 1- next-prime [ next-prime ] lfrom-by ] if ;