| re .0
>since the interesting number 1729
Yes, interestingly the taxi in which I came to work this morning was
number 1729. (-:
> n# = 2*3*5*7*...*p The product of the primes <= n, sometimes
> called "prime-factorial" or "primorial".
>
> M(k,n) = (1/4)*(k*47#/2 -1)^n : When 6M+1, 12M+1 and Y are all
> Y(k,n,s) = 18*M(k,n)(4*M(k,n)+1)/s+1 : prime for the same k and n, their
> : product is a Carmichael Number.
Just to make sure that I have this straight.
Choose k and n arbitrarily
1 / k * 47# \n
M = - �| ------- - 1 |
4 \ 2 /
Choose s arbitrarily
18M(4M+1)
Y = --------- + 1
s
If 6M+1, 12M+1 and Y are all prime then ...
I assume that you are asserting this without proof. It isn't obvious to
me.
Given that k, n and s are chosen arbitrarily (right?) does the
antecedent usually hold?
It looks to me that k must be odd, to make M an integer. Likewise is it
assumed that s must divide 18M(4M+1)?
|
| All good questions; I have no answers. Presumably you could ask the
list compiler for further reference.
> It looks to me that k must be odd, to make M an integer.
Other way around, right? k has to be even. Since there appear to be no
restrictions on s, I would assume any value that divides 18M(4M+1) is OK.
In the "1729" note the observation was made that a lot of Carmichael
numbers appear to be products of 3 or more factors. Sounds like a good
Knuth [HM50] level conjecture, supported at least partly here.
John
|
| re .2
>> It looks to me that k must be odd, to make M an integer.
>
> Other way around, right? k has to be even.
Assuming I copied the formula correctly...
1 / k * 47# \n
M = - �| ------- - 1 |
4 \ 2 /
If k is even then k/2 is an integer. 47# is even. So the product is
even. Subtract one and it's odd. Raise it to a power. It's still odd.
So 4 doesn't divide it.
Suppose k is odd. 47# is even but is only divided by 2 once. So 47#/2
is odd. So the product is odd. Subtract one and it's even. Raise to a
power and it stays even. If n >= 2 then there is certainly no problem
in the power being divisible by 4. For n = 1 it is left as an EFTR to
determine what additional constraints if any apply to k.
|