OFFSET
0,1
COMMENTS
See A193842 for the definition of fission of two sequences of polynomials or triangular arrays.
This array show the differences of the sequence of triangular numbers A000217); viz., row n consists of t(n) - t(n-k) for k=1..n-1. - Clark Kimberling, Apr 15 2017
LINKS
Clark Kimberling, Table of n, a(n) for n = 0..10000
FORMULA
EXAMPLE
First six rows:
2
3...5
4...7....9
5...9...12..14
6...11..15..18..20
7...13..18..22..25..27
MAPLE
a000217 := proc(n) n*(n+1)/2 end:
seq(print(seq(a000217(n+2) - a000217(n+1-k), k=0..n)), n=0..5); # Georg Fischer, May 03 2022
MATHEMATICA
z = 13;
p[0, x_] := 1; p[n_, x_] := x*p[n - 1, x] + n + 1;
q[0, x_] := 1; q[n_, x_] := x*q[n - 1, x] + 1;
p1[n_, k_] := Coefficient[p[n, x], x^k];
p1[n_, 0] := p[n, x] /. x -> 0;
d[n_, x_] := Sum[p1[n, k]*q[n - 1 - k, x], {k, 0, n - 1}]
h[n_] := CoefficientList[d[n, x], {x}]
TableForm[Table[Reverse[h[n]], {n, 0, z}]]
Flatten[Table[Reverse[h[n]], {n, -1, z}]] (* A193973 *)
TableForm[Table[h[n], {n, 0, z}]]
Flatten[Table[h[n], {n, -1, z}]] (* A193974 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Aug 10 2011
STATUS
approved