On Wed, Aug 24, 2022 at 09:42:54AM +0200, Ralf Hemmecke wrote:
> 
> A recurrence for the primes is of course a dream, but why does guess gives
> me something for
> 
> guess([2,3,5,7,11,13])
> 
> and
> 
> guess([2,3,5,7,11,13,17,19])
> 
> but returns the empty list for guess([2,3,5,7,11,13,17])?

Some values are used for checking, by default one value.  You
can use more values if you specify safety paramenter.  With
safety == 2 (two values for checking) most guesses are eliminated.
But still:

guess([2,3,5,7,11,13, 17, 19, 23], safety == 2)

gives result.

-- 
                              Waldek Hebisch

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/20220828204137.GB1962%40fricas.math.uni.wroc.pl.

Reply via email to