Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
ClearAll[Faulhaber]
|
||||
bernoulliB[1] := 1/2
|
||||
bernoulliB[n_] := BernoulliB[n]
|
||||
Faulhaber[n_, p_] := 1/(p + 1) Sum[Binomial[p + 1, j] bernoulliB[j] n^(p + 1 - j), {j, 0, p}]
|
||||
Table[Rest@CoefficientList[Faulhaber[n, t], n], {t, 0, 9}] // Grid
|
||||
Faulhaber[1000, 17]
|
||||
Loading…
Add table
Add a link
Reference in a new issue