You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Series that usually comes up while looking up pascal's triangle.
0th is 1,further n+1 is summation of ith and n-ith catalan number
1,1,2,5,14,42..... Describe the solution you'd like
0th is 1,further n+1 is summation of ith and n-ith catalan number. We can solve this using recursion concepts.
Do you want to work on it
Add comments and code in C++.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Series that usually comes up while looking up pascal's triangle.
0th is 1,further n+1 is summation of ith and n-ith catalan number
1,1,2,5,14,42.....
Describe the solution you'd like
0th is 1,further n+1 is summation of ith and n-ith catalan number. We can solve this using recursion concepts.
Do you want to work on it
Add comments and code in C++.
The text was updated successfully, but these errors were encountered: