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!)
A111184 Triangle T(n,k), 0<=k<=n, read by rows, given by [0, 2, 1, 3, 2, 4, 3, 5, 4, 6, 5, 7, 6, ...] DELTA [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, ...] where DELTA is the operator defined in A084938. 2

%I #35 Aug 07 2018 12:15:43

%S 1,0,1,0,2,1,0,6,6,1,0,24,34,12,1,0,120,210,110,20,1,0,720,1452,974,

%T 270,30,1,0,5040,11256,8946,3248,560,42,1,0,40320,97296,87504,38338,

%U 8792,1036,56,1

%N Triangle T(n,k), 0<=k<=n, read by rows, given by [0, 2, 1, 3, 2, 4, 3, 5, 4, 6, 5, 7, 6, ...] DELTA [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, ...] where DELTA is the operator defined in A084938.

%H Paul Barry, <a href="https://arxiv.org/abs/1804.06801">A note on number triangles that are almost their own production matrix</a>, arXiv:1804.06801 [math.CO], 2018.

%H R. Cori, <a href="http://dx.doi.org/10.1016/j.jcta.2009.02.008">Indecomposable permutations, hypermaps and labeled Dyck paths</a>, J. Comb. Theory A 116 (2009) 1326-1343, end of Section 1.2.2.

%F O.g.f. satisfies: A(x,y) = (1 + x^2*A'(x,y)) / (1+x - x*y - x*A(x,y)), where A'(x,y) = d/dx A(x,y). [_Paul D. Hanna_, Jul 31 2011]

%F O.g.f. satisfies: A(x,y) = 1 - x * d/dx log(1+x - x*y - x*A(x,y)). [_Paul D. Hanna_, Jul 30 2011]

%F Sum_{k, 0<=k<=n} T(n, k) = A003319(n+1).

%F Sum_{k, 0<=k<=n} T(n, k)*2^(n-k) = A004208(n).

%e Rows begin:

%e 1;

%e 0, 1;

%e 0, 2, 1;

%e 0, 6, 6, 1;

%e 0, 24, 34, 12, 1;

%e 0, 120, 210, 110, 20, 1;

%e 0, 720, 1452, 974, 270, 30, 1;

%e 0, 5040, 11256, 8946, 3248, 560, 42, 1;

%e 0, 40320, 97296, 87504, 38338, 8792, 1036, 56, 1.

%t DELTA[r_, s_, m_] := Module[{p, q, t, x, y}, q[k_] := x r[[k+1]] + y s[[k+1]]; p[0, _] = 1; p[_, -1] = 0; p[n_ /; n >= 1, k_ /; k >= 0] := p[n, k] = p[n, k-1] + q[k] p[n-1, k+1] // Expand; t[n_, k_] := Coefficient[p[n, 0], x^(n-k) y^k]; t[0, 0] = p[0, 0]; Table[t[n, k], {n, 0, m}, {k, 0, n}]];

%t DELTA[LinearRecurrence[{1, 1, -1}, {0, 2, 1}, 10], Mod[Range[10], 2], 10] // Flatten (* _Jean-François Alcover_, Jul 27 2018 *)

%o (PARI) {T(n,k)=local(A=1+x*y);for(i=1,n,A=1-x*deriv(log(1+x-x*y-x*A +x*O(x^n))));polcoeff(polcoeff(A,n,x),k,y)} /* _Paul D. Hanna_ */

%o (PARI) {T(n, k)=local(A=1+x*y); for(i=1, n, A=(1 + x^2*A')/(1 + x - x*y - x*A +x*O(x^n))); polcoeff(polcoeff(A, n, x), k, y)} /* _Paul D. Hanna_ */

%o /* Print 10 Rows of the triangle: */

%o for(n=0,10,for(k=0,n,print1(T(n,k),","));print(""))

%Y Cf. A003319, A004208.

%K nonn,tabl

%O 0,5

%A _Philippe Deléham_ and _Paul D. Hanna_, Oct 16 2005

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 April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)