The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A220962 Faulhaber’s triangle: triangle of numerators of coefficients of power-sum polynomials. 5
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, 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, 0, 5, 0, -1, 0, 1, 0, -1, 0, 5, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,25
COMMENTS
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
LINKS
Mohammad Torabi-Dashti, Faulhaber’s Triangle [Annotated scanned copy of preprint]
Mohammad Torabi-Dashti, Faulhaber's Triangle, College Math. J., 42:2 (2011), 96-97.
Eric Weisstein's MathWorld, Power Sum
EXAMPLE
Rows start:
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,1,1;
0,0,1,0,-7,0,7,1,1;
0,-1,0,2,0,-7,0,2,1,1;
...
MATHEMATICA
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
CROSSREFS
Cf. A220963 (denominators).
See also A162298/A162299.
Sequence in context: A112991 A346081 A137373 * A201292 A348975 A271343
KEYWORD
sign,tabf,frac
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 6 10:40 EDT 2024. Contains 373127 sequences. (Running on oeis4.)