In terms of a natural number , find the highest power of 2 that divides .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
The standard notation for the highest power of 2 that divides k is υ 2 ( k ) . You can see it in, e.g., the LTE paper .
υ 2 ( ( n + 1 ) ( n + 2 ) ⋯ ( 2 n ) ) = υ 2 ( n ! ( 2 n ) ! ) = υ 2 ( ( 2 n ) ! ) − υ 2 ( n ! )
See Legendre's formula .
= ( ⌊ 2 2 n ⌋ + ⌊ 4 2 n ⌋ + ⌊ 8 2 n ⌋ + ⋯ ) − ( ⌊ 2 n ⌋ + ⌊ 4 n ⌋ + ⌊ 8 n ⌋ + ⋯ ) = ⌊ n ⌋ = n
Alternative solution: ( n + 1 ) ( n + 2 ) ⋯ ( 2 n ) = n ! ( 2 n ) ! = n ! ( 1 ⋅ 3 ⋅ 5 ⋯ ( 2 n − 1 ) ) ⋅ ( 2 ⋅ 4 ⋅ 6 ⋯ 2 n )
= n ! ( 1 ⋅ 3 ⋅ 5 ⋯ ( 2 n − 1 ) ) ⋅ ( ( 2 ⋅ 1 ) ⋅ ( 2 ⋅ 2 ) ⋅ ( 2 ⋅ 3 ) ⋯ ( 2 ⋅ n ) ) = n ! ( 1 ⋅ 3 ⋅ 5 ⋯ ( 2 n − 1 ) ) ⋅ ( 2 n n ! ) = ( 1 ⋅ 3 ⋅ 5 ⋯ ( 2 n − 1 ) ) ⋅ 2 n .