%I #27 Jul 04 2020 04:13:55
%S 0,1,0,1,1,0,1,1,1,0,0,1,1,1,0,-1,0,1,1,1,0,0,-1,0,5,1,1,0,1,0,-1,0,1,
%T 1,1,0,0,1,0,-7,0,7,1,1,0,-1,0,2,0,-7,0,2,1,1,0,0,-3,0,1,0,-7,0,3,1,1,
%U 0,5,0,-1,0,1,0,-1,0,5,1,1
%N Faulhaber’s triangle: triangle of numerators of coefficients of power-sum polynomials.
%C This version of Faulhaber's triangle, A220962/A220963, is essentially the same as A162298/A162299 except for having an extra column of 0's. See A162298/A162299 for further information. - _N. J. A. Sloane_, Jan 28 2017
%H Mohammad Torabi-Dashti, <a href="/A162298/a162298.pdf">Faulhaber’s Triangle</a> [Annotated scanned copy of preprint]
%H Mohammad Torabi-Dashti, <a href="http://www.maa.org/programs/faculty-and-departments/classroom-capsules-and-notes/faulhaber-s-triangle">Faulhaber's Triangle</a>, College Math. J., 42:2 (2011), 96-97.
%H Eric Weisstein's MathWorld, <a href="http://mathworld.wolfram.com/PowerSum.html">Power Sum</a>
%e Rows start:
%e 0,1;
%e 0,1,1;
%e 0,1,1,1;
%e 0,0,1,1,1;
%e 0,-1,0,1,1,1;
%e 0,0,-1,0,5,1,1;
%e 0,1,0,-1,0,1,1,1;
%e 0,0,1,0,-7,0,7,1,1;
%e 0,-1,0,2,0,-7,0,2,1,1;
%e ...
%t f[n_, x_] := f[n,x]=((x + 1)^(n + 1) - 1)/(n + 1) - Sum[Binomial[n + 1, k]*f[k, x], {k , 0, n - 1}]/(n + 1); f[0, x_] := x; row[n_] := CoefficientList[f[n, x], x] // Numerator; Table[row[n], {n, 0, 10}] // Flatten
%Y Cf. A220963 (denominators).
%Y See also A162298/A162299.
%K sign,tabf,frac
%O 0,25
%A _Jean-François Alcover_, Dec 27 2012