OFFSET
0,3
COMMENTS
See A140351 for the main part of the documentation.
FORMULA
a(n) = denominator(Sum_{i=0..n} binomial(n,i)*(i+1)*bern(i)). - Vladimir Kruchinin, Oct 05 2016
a(n) = A006955(floor(n/2)). - Georg Fischer, Nov 29 2022
MAPLE
C := proc(n, x) if n = 0 then 1; else add(binomial(n-1, j-1)* bernoulli(j, x), j=1..n) ; expand(%) ; end if ; end proc:
A140219 := proc(n) coeff(C(n, x), x, 1) ; denom(%) ; end proc:
seq(A140219(n), n=1..80) ; # R. J. Mathar, Sep 22 2011
MATHEMATICA
Table[Sum[Binomial[n, k]*(k+1)*BernoulliB[k], {k, 0, n}], {n, 0, 60}] // Denominator (* Vaclav Kotesovec, Oct 05 2016 *)
PROG
(Maxima) makelist(denom(sum((binomial(n, i)*(i+1)*bern(i)), i, 0, n)), n, 0, 20); /* Vladimir Kruchinin, Oct 05 2016 */
(PARI) a(n) = denominator(sum(i=0, n, binomial(n, i)*(i+1)*bernfrac(i))); \\ Michel Marcus, Oct 05 2016
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Paul Curtz, Jun 23 2008
STATUS
approved