login

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”).

A232628
Denominators of the triangle of polynomial coefficients P(0,x)=1, 2*P(n)=(1+x)*((1+x)^(n-1)+x^(n-1)).
1
1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 1, 2, 1, 2, 2, 1, 1, 1, 1, 2, 1, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1
OFFSET
0,4
COMMENTS
See A233508.
EXAMPLE
1,
1, 1,
2, 2, 1,
2, 2, 1, 1,
2, 1, 1, 2, 1,
2, 2, 1, 1, 1, 1, etc.
MATHEMATICA
p[n_] := (1+x)*((1+x)^(n-1)+x^(n-1))/2; t[n_, k_] := Coefficient[p[n], x, k] // Denominator; Table[t[n, k], {n, 0, 10 }, {k, 0, n}] // Flatten
CROSSREFS
Cf. A233508 (numerators).
Sequence in context: A334904 A165018 A131837 * A087889 A378306 A378304
KEYWORD
nonn,tabl,frac
AUTHOR
STATUS
approved