Skip to content

Instantly share code, notes, and snippets.

@eduardoleon
Created June 3, 2018 00:12
Show Gist options
  • Save eduardoleon/786d6c2aef0894611b35aa0d71292018 to your computer and use it in GitHub Desktop.
Save eduardoleon/786d6c2aef0894611b35aa0d71292018 to your computer and use it in GitHub Desktop.
Problem 4.1.(ii) from Teschl's book
w[0] := a
w[1] := -a^2
w[2] := a^3
w[3] := -a^4 + 1/3
w[k_] := w[k] = -Sum[ w[i-1] * w[k-i] / k, {i, k} ] // Simplify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment