Problem 57507. Easy Sequences 88: Double Summation of a Combinatorial Function
Given two positive integers a and b,
, we define the function
as the sum of the reciprocals of the products of all combinations of 1 to a taken b at a time. In Matlab we say that: R = sum(1./prod(nchoosek(a,b)')). For example if
and
:
>> R = sum(1./prod(nchoosek(1:5,3)'))
R =
0.7083
Given a positive integer x, we are asked to evaluate the following double summation:
For example for
:
In which, in Matlab, evaluates to:
>> S = sum(arrayfun(@(i) sum(1./prod(nchoosek(1:3,i)')),2:2))+sum(arrayfun(@(i) sum(1./prod(nchoosek(1:4,i)')),2:3))+sum(arrayfun(@(i) sum(1./prod(nchoosek(1:5,i)')),2:4))
S =
5.5833
Please round-off S to the nearest whole number. Therefore, the final output for the above example is
.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers2
Suggested Problems
-
Sum of diagonal of a square matrix
1590 Solvers
-
Remove from a 2-D matrix all the rows that contain at least one element less than or equal to 4
136 Solvers
-
209 Solvers
-
Add a row of zeros on top of a matrix
254 Solvers
-
Change the first and last diagonal element of the identity matrix to zero
153 Solvers
More from this Author116
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!