Message Boards Message Boards

0
|
2111 Views
|
1 Reply
|
1 Total Likes
View groups...
Share
Share this post:

Recursive Formula Involving a Summation

Posted 10 years ago
POSTED BY: Brian Razin

Asking for a closed form solution may be too much. You can calculate values:

a[1] = 1;
a[n_] := a[n] = (n!/(\[Lambda] - \[Lambda]^n))*
    Sum[(a[n - k]*\[Lambda]^(n - k)*(-1)^k)/(k!*(n - 2 k)!), {k, 1, 
      Floor[n/2]}];
TableForm@Table[Simplify@{n, a[n]}, {n, 1, 10}]
POSTED BY: Gianluca Gorni
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract