OFFSET
0,6
COMMENTS
Row n contains floor((n+3)/2) terms.
LINKS
Gheorghe Coserea, Rows n=0..200, flattened
Pierre Lescanne, Quantitative aspects of linear and affine closed lambda terms, arXiv:1702.03085 [cs.DM], 2017.
FORMULA
EXAMPLE
A(x;t) = t*x + (1 + t)*x^2 + (2 + t + t^2)*x^3 + (3 + 5*t + 3*t^2)*x^4 + (9 + 17*t + 6*t^2 + 2*t^3)*x^5 + ...
Triangle starts:
n\k [0] [1] [2] [3] [4] [5] [6] [7]
[0] 0;
[1] 0, 1;
[2] 1, 1;
[3] 2, 1, 1;
[4] 3, 5, 3;
[5] 9, 17, 6, 2;
[6] 30, 41, 26, 10;
[7] 81, 131, 111, 30, 5;
[8] 242, 491, 357, 134, 35;
[9] 838, 1625, 1274, 652, 140, 14;
[10] 2799, 5497, 5202, 2556, 676, 126;
[11] 9365, 20581, 19827, 10200, 3610, 630, 42;
[12] 33616, 76561, 74797, 44880, 16390, 3334, 462;
[13] 122937, 282591, 301188, 190278, 72490, 19218, 2772, 132;
[14] 449698, 1089375, 1219920, 788654, 341770, 97890, 16108, 1716;
[15] ...
MATHEMATICA
max = 15; y[_, _] = 0;
Do[y[x_, t_] = Series[t x + x y[x, t]^2 + x D[y[x, t], t] + x y[x, t], {x, 0, max}, {t, 0, max}] // Normal, max];
CoefficientList[#, t]& /@ CoefficientList[y[x, t], x] /. {} -> {0} // Flatten (* Jean-François Alcover, Oct 25 2018 *)
PROG
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Gheorghe Coserea, May 23 2017
STATUS
approved