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!)
A276997 Denominators of coefficients of polynomials arising from applying the complete Bell polynomials to k!B_k(x)/(k*(k-1)) with B_k(x) the Bernoulli polynomials. 2
1, 1, 1, 6, 1, 1, 1, 2, 2, 1, 60, 1, 1, 1, 1, 1, 6, 2, 3, 1, 1, 504, 4, 4, 1, 1, 1, 1, 1, 24, 8, 12, 2, 2, 2, 1, 2160, 18, 9, 3, 2, 1, 3, 1, 1, 1, 60, 4, 6, 1, 5, 1, 1, 1, 1, 3168, 48, 16, 6, 3, 2, 2, 1, 2, 1, 1, 1, 288, 32, 144, 12, 12, 4, 2, 1, 6, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
For formulas and references see A276996.
Compare T(n,0) with A220411.
LINKS
EXAMPLE
Triangle starts:
1;
1, 1;
6, 1, 1;
1, 2, 2, 1;
60, 1, 1, 1, 1;
1, 6, 2, 3, 1, 1;
504, 4, 4, 1, 1, 1, 1;
1, 24, 8, 12, 2, 2, 2, 1;
2160, 18, 9, 3, 2, 1, 3, 1, 1;
MAPLE
A276997_row := proc(n) local p;
p := (n, x) -> CompleteBellB(n, 0, seq((k-2)!*bernoulli(k, x), k=2..n)):
seq(denom(coeff(p(n, x), x, k)), k=0..n) end:
seq(A276997_row(n), n=0..11);
MATHEMATICA
CompleteBellB[n_, zz_] := Sum[BellY[n, k, zz[[1 ;; n-k+1]]], {k, 1, n}];
p[n_, x_] := CompleteBellB[n, Join[{0}, Table[(k-2)! BernoulliB[k, x], {k, 2, n}]]];
row[0] = {1}; row[1] = {1, 1}; row[n_] := CoefficientList[p[n, x], x] // Denominator;
Table[row[n], {n, 0, 11}] // Flatten (* Jean-François Alcover, Sep 09 2018 *)
CROSSREFS
Cf. A276996 (numerators), A220411.
Sequence in context: A126795 A348929 A334491 * A324394 A064793 A355925
KEYWORD
nonn,frac,tabl
AUTHOR
Peter Luschny, Oct 01 2016
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 May 20 06:19 EDT 2024. Contains 372703 sequences. (Running on oeis4.)