A168426 Square array of denominators of a truncated array of Bernoulli twin numbers (A168516), read by antidiagonals.
3, 6, 6, 30, 15, 30, 30, 15, 15, 30, 42, 105, 105, 105, 42, 42, 21, 105, 105, 21, 42, 30, 105, 105, 105, 105, 105, 30, 30, 15, 105, 105, 105, 105, 15, 30, 66, 165, 165, 1155, 231, 1155, 165, 165, 66, 66, 33, 165, 165, 231, 231, 165, 165, 33, 66, 2730, 15015, 15015, 15015, 15015, 15015, 15015, 15015
Offset: 0
Programs
-
Mathematica
max = 11; c[0] = 1; c[n_?EvenQ] := BernoulliB[n] + BernoulliB[n-1]; c[n_?OddQ] := -BernoulliB[n] - BernoulliB[n-1]; cc = Table[c[n], {n, 0, max+1}]; diff = Drop[#, 2]& /@ Table[ Differences[cc, n], {n, 0, max-1}]; Flatten[ Table[ diff[[n-k+1, k]], {n, 1, max}, {k, 1, n}]] // Denominator (* Jean-François Alcover, Aug 09 2012 *)
Extensions
More terms from R. J. Mathar, Jul 10 2011
Comments