On 2026-07-10 20:22, Tomasz Ordowski wrote:
> [...]
> However, I believe that
> (2n+1)!! | Product_{k=1..n} (2^(2k) - 1)
> is provable. Right?
For n = 0, I presume this means: 1!! | 1, or as a pair: (1, 1).
More pairs: (3, 3), (15, 45), (105, 2835), ...
The division results as a sequence:
[1, 1, 3, 27, 765, 71145, 22410675, 24476939235, ...]
Their maximum factor that is congruent to {-1, 1} mod 2^n:
[1, 1, 3, 3, 17, 31, 31, 127, 257, 257, 257, 257, 257, 8191, ...]
Some exploitable patterns:
- - - - - - -
A000984: binomial(2*n, n) = (2*n)! / n! / n!.
[1, 2, 6, 20, 70, 252, 924, 3432, 12870, ...]
A000680: (2*n)! / 2^n = (2*n) * (2*n-1)! / 2^n.
[1, 1, 6, 90, 2520, 113400, 7484400, ...]
- - - - - - -
(A) For n >= 1, (2*n+1)!! = (2*n+1) * (2*n-1)!!
= (2*n+1) * (2*n)! / n! / 2^n
= (2*n+1) * binomial(2*n, n) * n! / 2^n.
- - - - - - -
(B) Product_{k=1..n} (2^(2k) - 1)
= Product_{k=1..n} (2^k - 1) * (2^k + 1)
= Product_{k=1..n} (2^k - 1) * Product_{k=1..n} (2^k + 1), which
trivially divides n!.
- - - - - - -
B / A = {1, 3, 27, 765, 71145, 22410675, 24476939235, ...}
which seems to be either divisible by (2^n-1) or (2^n+1), see above.
-- Ruud