Recursion series with two variable indices $u_n,k = u_n-1,k + u_n-2,k-1$“Upper summation” binomial identity: different version from “Concrete Mathematics”Uniqueness in transfinite recursion.Closed-form solution of non-autonomous vector recurrence relationFunction that maps numbers to diagonal co-ordinatesGeneral Expression for an Element of a Triangular ArrayFinding Value of Pascal's Triangle Given Single IndexToward Explicit Formula from Recursion : Is Generating function “the only” answer?Binomial Approximation of Gaussian DistributionGenerate a row of a modified Pascal's triangle.How to find the closed form of the recursive equation, if 2 of the 3 roots of the characteristic equation are imaginary and only 1 root is real?
Are the number of citations and number of published articles the most important criteria for a tenure promotion?
Why did Neo believe he could trust the machine when he asked for peace?
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?
How could an uplifted falcon's brain work?
How to format long polynomial?
How to find program name(s) of an installed package?
Why was the small council so happy for Tyrion to become the Master of Coin?
Why does Kotter return in Welcome Back Kotter?
Maximum likelihood parameters deviate from posterior distributions
Test whether all array elements are factors of a number
Problem of parity - Can we draw a closed path made up of 20 line segments...
What would happen to a modern skyscraper if it rains micro blackholes?
How does strength of boric acid solution increase in presence of salicylic acid?
How much RAM could one put in a typical 80386 setup?
Is it unprofessional to ask if a job posting on GlassDoor is real?
What are the differences between the usage of 'it' and 'they'?
What are these boxed doors outside store fronts in New York?
can i play a electric guitar through a bass amp?
Today is the Center
Adding span tags within wp_list_pages list items
Is it legal for company to use my work email to pretend I still work there?
How is the claim "I am in New York only if I am in America" the same as "If I am in New York, then I am in America?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Recursion series with two variable indices $u_n,k = u_n-1,k + u_n-2,k-1$
“Upper summation” binomial identity: different version from “Concrete Mathematics”Uniqueness in transfinite recursion.Closed-form solution of non-autonomous vector recurrence relationFunction that maps numbers to diagonal co-ordinatesGeneral Expression for an Element of a Triangular ArrayFinding Value of Pascal's Triangle Given Single IndexToward Explicit Formula from Recursion : Is Generating function “the only” answer?Binomial Approximation of Gaussian DistributionGenerate a row of a modified Pascal's triangle.How to find the closed form of the recursive equation, if 2 of the 3 roots of the characteristic equation are imaginary and only 1 root is real?
$begingroup$
I found a recursive formula that looks very similar to Pascal's triangle. Where in Pascal's triangle you have the recurring formula
$$u_n,k = u_n-1,k + u_n-1,k-1,$$
which gives the Binomial function $binomnk$ with the initial condition $u_1,0=u_1,1 = 1$. In my case the second term is one value lower in the index
$$u_n,k = u_n-1,k + u_n-2,k-1 , $$
with the initial condition $u_1,0 = u_2,0 = 1 $ and $ u_2,1 = 2$. 
It looks like the image above (where we miss the top 1). Where n is the height and k is the width. How can one calculate a closed form for this? I've done this bedore with single variable recursion formulas by using the characteristic polynomial, but I'm not sure how to start now.
functions binomial-coefficients recursion
$endgroup$
add a comment |
$begingroup$
I found a recursive formula that looks very similar to Pascal's triangle. Where in Pascal's triangle you have the recurring formula
$$u_n,k = u_n-1,k + u_n-1,k-1,$$
which gives the Binomial function $binomnk$ with the initial condition $u_1,0=u_1,1 = 1$. In my case the second term is one value lower in the index
$$u_n,k = u_n-1,k + u_n-2,k-1 , $$
with the initial condition $u_1,0 = u_2,0 = 1 $ and $ u_2,1 = 2$. 
It looks like the image above (where we miss the top 1). Where n is the height and k is the width. How can one calculate a closed form for this? I've done this bedore with single variable recursion formulas by using the characteristic polynomial, but I'm not sure how to start now.
functions binomial-coefficients recursion
$endgroup$
add a comment |
$begingroup$
I found a recursive formula that looks very similar to Pascal's triangle. Where in Pascal's triangle you have the recurring formula
$$u_n,k = u_n-1,k + u_n-1,k-1,$$
which gives the Binomial function $binomnk$ with the initial condition $u_1,0=u_1,1 = 1$. In my case the second term is one value lower in the index
$$u_n,k = u_n-1,k + u_n-2,k-1 , $$
with the initial condition $u_1,0 = u_2,0 = 1 $ and $ u_2,1 = 2$. 
It looks like the image above (where we miss the top 1). Where n is the height and k is the width. How can one calculate a closed form for this? I've done this bedore with single variable recursion formulas by using the characteristic polynomial, but I'm not sure how to start now.
functions binomial-coefficients recursion
$endgroup$
I found a recursive formula that looks very similar to Pascal's triangle. Where in Pascal's triangle you have the recurring formula
$$u_n,k = u_n-1,k + u_n-1,k-1,$$
which gives the Binomial function $binomnk$ with the initial condition $u_1,0=u_1,1 = 1$. In my case the second term is one value lower in the index
$$u_n,k = u_n-1,k + u_n-2,k-1 , $$
with the initial condition $u_1,0 = u_2,0 = 1 $ and $ u_2,1 = 2$. 
It looks like the image above (where we miss the top 1). Where n is the height and k is the width. How can one calculate a closed form for this? I've done this bedore with single variable recursion formulas by using the characteristic polynomial, but I'm not sure how to start now.
functions binomial-coefficients recursion
functions binomial-coefficients recursion
edited Mar 22 at 1:25
user1792605
asked Mar 21 at 23:31
user1792605user1792605
606
606
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Hint The entries in the $k$th antidiagonal are binomial coefficients $n choose k$.
$endgroup$
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3157524%2frecursion-series-with-two-variable-indices-u-n-k-u-n-1-k-u-n-2-k-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Hint The entries in the $k$th antidiagonal are binomial coefficients $n choose k$.
$endgroup$
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
add a comment |
$begingroup$
Hint The entries in the $k$th antidiagonal are binomial coefficients $n choose k$.
$endgroup$
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
add a comment |
$begingroup$
Hint The entries in the $k$th antidiagonal are binomial coefficients $n choose k$.
$endgroup$
Hint The entries in the $k$th antidiagonal are binomial coefficients $n choose k$.
answered Mar 22 at 1:49
TravisTravis
64k769151
64k769151
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
add a comment |
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
1
1
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice thanks. I got it it's $$ binomn-k+1k-1 + binomn-k+1k-2 $$
$endgroup$
– user1792605
Mar 22 at 2:44
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
$begingroup$
Nice work! NB using the first recurrence you mention (the one relating different binomial coefficients) you can simplify this to $$n - k + 2choosek - 1 .$$
$endgroup$
– Travis
Mar 22 at 5:39
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3157524%2frecursion-series-with-two-variable-indices-u-n-k-u-n-1-k-u-n-2-k-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown