editing
approved
Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
editing
approved
nonn,tabl,less
proposed
editing
editing
proposed
Cf. A213268.
proposed
editing
editing
proposed
A164558[n_] := Sum[(-1)^k*Binomial[n, k]*BernoulliB[k], {k, 0, n}] // Numerator; t[0, k_?Positive] := A164558[k] / Denominator[ BernoulliB[k]]; t[n_?Positive, k_] := t[n, k] = t[n-1, k+1] - 2*t[n-1, k]; t[0, 0] = 1; t[_, _] = 0; Flatten[ Table[t[n-k , k] // Denominator, {n, 0, 9}, {k, 0, n}]] (* Jean-François Alcover, Dec 04 2012 *)
proposed
editing
editing
proposed