Question 595147
Formulas that yield prime numbers, for example: x squared - x + 41
Select 5 numbers for X,-   0 , two even, two odd-  substitute them in the formula see if prime numbers occur. try to find a number for X that when substituted in the formula yields a composite number.
----------------
Prime numbers have no factors other than 1 and itself.  eg, 7 = 1*7
Composite numbers have other factors, eg, 15 = 3*5
------------------
{{{f(x) = x^2 - x + 41}}}
Sub numbers for x and get the result
For zero --> 0^2 - 0 + 41 = 41
That's called f(0), the value of the function at zero.
----------
f(1) = 1^2 - 1 + 41 = 41
f(2) = 2^2 - 2 + 41 = 43
f(3) = 3^2 - 3 + 41 = 47
f(4) = 4^2 - 4 + 41 = 53
f(5) = 5^2 - 5 + 41 = 61
-------
That's 6 of them, and they're all prime numbers.
------
f(41) = 41^2 - 41 + 41 = 1681 which is not prime, it's 41*41