cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-9 of 9 results.

A182703 Triangle read by rows: T(n,k) = number of occurrences of k in the last section of the set of partitions of n.

Original entry on oeis.org

1, 1, 1, 2, 0, 1, 3, 2, 0, 1, 5, 1, 1, 0, 1, 7, 4, 2, 1, 0, 1, 11, 3, 2, 1, 1, 0, 1, 15, 8, 3, 3, 1, 1, 0, 1, 22, 7, 6, 2, 2, 1, 1, 0, 1, 30, 15, 6, 5, 3, 2, 1, 1, 0, 1, 42, 15, 10, 5, 4, 2, 2, 1, 1, 0, 1, 56, 27, 14, 10, 5, 5, 2, 2, 1, 1, 0, 1
Offset: 1

Views

Author

Omar E. Pol, Nov 28 2010

Keywords

Comments

For the definition of "section" of the set of partitions of n see A135010.
Also, column 1 gives the number of partitions of n-1. For k >= 2, row n lists the number of k's in all partitions of n that do not contain 1 as a part.
From Omar E. Pol, Feb 12 2012: (Start)
It appears that reversed rows converge to A002865.
It appears that row n is also the base of an isosceles triangle in which the column sums give the partition numbers A000041 in descending order starting with p(n-1) = A000041(n-1). Example for n = 7:
.
. 1,
. 1, 0, 1,
. 4, 2, 1, 0, 1,
11, 3, 2, 1, 1, 0, 1,
---------------------
11, 7, 5, 3, 2, 1, 1,
.
It appears that in row n starts an infinite trapezoid in which column sums always give the number of partitions of n-1. Example for n = 7:
.
11, 3, 2, 1, 1, 0, 1,
. 8, 3, 3, 1, 1, 0, 1,
. 6, 2, 2, 1, 1, 0, 1,
. 5, 3, 2, 1, 1, 0, 1,
. 4, 2, 2, 1, 1, 0, 1,
. 5, 2, 2, 1, 1, 0,...
. 4, 2, 2, 1, 1,...
. 4, 2, 2, 1,...
. 4, 2, 2,...
. 4, 2,...
. 4,...
.
The sum of any column is always p(7-1) = p(6) = A000041(6) = 11.
It appears that the first term of row n is one of the vertices of an infinite isosceles triangle in which column sums give the partition numbers A000041 in ascending order starting with p(n-1) = A000041(n-1). Example for n = 7:
11,
. 8,
. 7, 6,
. 6, 5,
. 10, 5, ...
. 10, ...
. 10, ...
-------------------
11, 15, 22, 30, ...
(End)
It appears that row n lists the first differences of the row n of triangle A207031 together with 1 (as the final term of row n). - Omar E. Pol, Feb 26 2012
More generally T(n,k) is the number of occurrences of k in the n-th section of the set of partitions of any integer >= n. - Omar E. Pol, Oct 21 2013

Examples

			Illustration of three arrangements of the last section of the set of partitions of 7, or more generally the 7th section of the set of partitions of any integer >= 7:
.                                        _ _ _ _ _ _ _
.     (7)                    (7)        |_ _ _ _      |
.     (4+3)                (4+3)        |_ _ _ _|_    |
.     (5+2)                (5+2)        |_ _ _    |   |
.     (3+2+2)            (3+2+2)        |_ _ _|_ _|_  |
.       (1)                  (1)                    | |
.         (1)                (1)                    | |
.         (1)                (1)                    | |
.           (1)              (1)                    | |
.         (1)                (1)                    | |
.           (1)              (1)                    | |
.           (1)              (1)                    | |
.             (1)            (1)                    | |
.             (1)            (1)                    | |
.               (1)          (1)                    | |
.                 (1)        (1)                    |_|
.    ----------------
.     19,8,5,3,2,1,1 --> Row 7 of triangle A207031.
.      |/|/|/|/|/|/|
.     11,3,2,1,1,0,1 --> Row 7 of this triangle.
.
Note that the "head" of the last section is formed by the partitions of 7 that do not contain 1 as a part. The "tail" is formed by A000041(7-1) parts of size 1. The number of rows (or zones) is A000041(7) = 15. The last section of the set of partitions of 7 contains eleven 1's, three 2's, two 3's, one 4, one 5, there are no 6's and it contains one 7. So, for k = 1..7, row 7 gives: 11, 3, 2, 1, 1, 0, 1.
Triangle begins:
   1;
   1,  1;
   2,  0,  1;
   3,  2,  0,  1;
   5,  1,  1,  0, 1;
   7,  4,  2,  1, 0, 1;
  11,  3,  2,  1, 1, 0, 1;
  15,  8,  3,  3, 1, 1, 0, 1;
  22,  7,  6,  2, 2, 1, 1, 0, 1;
  30, 15,  6,  5, 3, 2, 1, 1, 0, 1;
  42, 15, 10,  5, 4, 2, 2, 1, 1, 0, 1;
  56, 27, 14, 10, 5, 5, 2, 2, 1, 1, 0, 1;
  ...
		

Crossrefs

Row sums give A138137. Where records occur is A134869.
Sub-triangles (1-11): A023531, A129186, A194702-A194710

Programs

  • Maple
    p:= (f, g)-> zip((x, y)-> x+y, f, g, 0):
    b:= proc(n,i) option remember; local g;
          if n=0        then [1]
        elif n<2 or i<2 then [0]
        else g:=   `if`(i>n, [0],  b(n-i, i));
             p(p([0$j=2..i, g[1]], b(n, i-1)), g)
          fi
        end:
    h:= proc(n) option remember;
          `if`(n=0, 1, b(n, n)[1]+h(n-1))
        end:
    T:= proc(n) h(n-1), b(n, n)[2..n][] end:
    seq(T(n), n=1..20);  # Alois P. Heinz, Feb 19 2012
  • Mathematica
    p[f_, g_] := Plus @@ PadRight[{f, g}]; b[n_, i_] := b[n, i] = Module[{g}, Which[n == 0, {1}, n<2 || i<2, {0}, True, g = If [i>n, {0}, b[n-i, i]]; p[p[Append[Array[0&, i-1], g[[1]]], b[n, i-1]], g]]]; h[n_] := h[n] = If[n == 0, 1, b[n, n][[1]] + h[n-1]]; t[n_] := {h[n-1], Sequence @@ b[n, n][[2 ;; n]]}; Table[t[n], {n, 1, 20}] // Flatten (* Jean-François Alcover, Jan 16 2014, after Alois P. Heinz's Maple code *)
    Table[{PartitionsP[n-1]}~Join~Table[Count[Flatten@Cases[IntegerPartitions[n], x_ /; Last[x] != 1], k], {k,2,n}], {n,1,12}]  // Flatten (* Robert Price, May 15 2020 *)

Formula

It appears that T(n,k) = A207032(n,k) - A207032(n,k+2). - Omar E. Pol, Feb 26 2012

A194702 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (2 + m).

Original entry on oeis.org

2, 0, 2, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 2. For further information see A182703 and A135010.

Examples

			Triangle begins:
2,
0, 2,
1, 0, 1,
0, 1, 0, 1,
0, 0, 1, 0, 1,
0, 0, 0, 1, 0, 1,
0, 0, 0, 0, 1, 0, 1,
0, 0, 0, 0, 0, 1, 0, 1,
0, 0, 0, 0, 0, 0, 1, 0, 1,
0, 0, 0, 0, 0, 0, 0, 1, 0, 1,
...
For k = 1 and  m = 1; T(1,1) = 2 because there are two parts of size 1 in the last section of the set of partitions of 3, since 2 + m = 3, so a(1) = 2. For k = 2 and m = 1; T(2,1) = 0 because there are no parts of size 2 in the last section of the set of partitions of 3, since 2 + m = 3, so a(2) = 0.
		

Crossrefs

Always the sum of row k = p(2) = A000041(n) = 2.
The first (0-10) members of this family of triangles are A023531, A129186, this sequence, A194703-A194710.

Formula

T(k,m) = A182703(2+m,k), with T(k,m) = 0 if k > 2+m.
T(k,m) = A194812(2+m,k).

A194704 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (4 + m).

Original entry on oeis.org

5, 1, 4, 1, 2, 2, 0, 1, 1, 3, 1, 0, 1, 1, 2, 0, 1, 0, 1, 1, 2, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 4. For further information see A182703 and A135010.

Examples

			Triangle begins:
  5,
  1, 4,
  1, 2, 2,
  0, 1, 1, 3,
  1, 0, 1, 1, 2,
  ...
For k = 1 and m = 1: T(1,1) = 5 because there are five parts of size 1 in the last section of the set of partitions of 5, since 4 + m = 5, so a(1) = 5.
For k = 2 and m = 1: T(2,1) = 1 because there is only one part of size 2 in the last section of the set of partitions of 5, since 4 + m = 5, so a(2) = 1.
		

Crossrefs

Always the sum of row k = p(4) = A000041(4) = 5.
The first (0-10) members of this family of triangles are A023531, A129186, A194702, A194703, this sequence, A194705-A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=4); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(4+m,k), with T(k,m) = 0 if k > 4+m.
T(k,m) = A194812(4+m,k).

Extensions

Terms a(16) and beyond from Andrew Howroyd, Feb 19 2020

A194705 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (5 + m).

Original entry on oeis.org

7, 4, 3, 2, 2, 3, 1, 1, 3, 2, 0, 1, 1, 2, 3, 1, 0, 1, 1, 2, 2, 0, 1, 0, 1, 1, 2, 2, 0, 0, 1, 0, 1, 1, 2, 2, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 5. For further information see A182703 and A135010.

Examples

			Triangle begins:
  7,
  4, 3,
  2, 2, 3,
  1, 1, 3, 2,
  0, 1, 1, 2, 3,
  1, 0, 1, 1, 2, 2,
  0, 1, 0, 1, 1, 2, 2,
  ...
For k = 1 and m = 1: T(1,1) = 7 because there are seven parts of size 1 in the last section of the set of partitions of 6, since 5 + m = 6, so a(1) = 7.
For k = 2 and m = 1: T(2,1) = 4 because there are four parts of size 2 in the last section of the set of partitions of 6, since 5 + m = 6, so a(2) = 4.
		

Crossrefs

Always the sum of row k = p(5) = A000041(5) = 7.
The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194704, this sequence, A194706-A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=5); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(5+m,k), with T(k,m) = 0 if k > 5+m.
T(k,m) = A194812(5+m,k).

Extensions

Terms a(29) and beyond from Andrew Howroyd, Feb 19 2020

A194706 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (6 + m).

Original entry on oeis.org

11, 3, 8, 2, 3, 6, 1, 3, 2, 5, 1, 1, 2, 3, 4, 0, 1, 1, 2, 2, 5, 1, 0, 1, 1, 2, 2, 4, 0, 1, 0, 1, 1, 2, 2, 4, 0, 0, 1, 0, 1, 1, 2, 2, 4, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 6. For further information see A182703 and A135010.

Examples

			Triangle begins:
  11,
   3, 8,
   2, 3, 6,
   1, 3, 2, 5,
   1, 1, 2, 3, 4,
   0, 1, 1, 2, 2, 5,
  ...
For k = 1 and m = 1: T(1,1) = 11 because there are 11 parts of size 1 in the last section of the set of partitions of 7, since 6 + m = 7, so a(1) = 11.
For k = 2 and m = 1: T(2,1) = 3 because there are three parts of size 2 in the last section of the set of partitions of 7, since 6 + m = 7, so a(2) = 3.
		

Crossrefs

Always the sum of row k = p(6) = A000041(6) = 11.
The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194705, this sequence, A194707-A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=6); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(6+m,k), with T(k,m) = 0 if k > 6+m.
T(k,m) = A194812(6+m,k).

Extensions

Terms a(22) and beyond from Andrew Howroyd, Feb 19 2020

A194707 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (7 + m).

Original entry on oeis.org

15, 8, 7, 3, 6, 6, 3, 2, 5, 5, 1, 2, 3, 4, 5, 1, 1, 2, 2, 5, 4, 0, 1, 1, 2, 2, 4, 5, 1, 0, 1, 1, 2, 2, 4, 4, 0, 1, 0, 1, 1, 2, 2, 4, 4, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 7. For further information see A182703 and A135010.

Examples

			Triangle begins:
  15,
   8, 7,
   3, 6, 6,
   3, 2, 5, 5,
  ...
For k = 1 and m = 1: T(1,1) = 15 because there are 15 parts of size 1 in the last section of the set of partitions of 8, since 7 + m = 8, so a(1) = 15.
For k = 2 and m = 1: T(2,1) = 8 because there are eight parts of size 2 in the last section of the set of partitions of 8, since 7 + m = 8, so a(2) = 8.
		

Crossrefs

Always the sum of row k = p(7) = A000041(7) = 15.
The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194706, this sequence, A194708-A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=7); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(7+m,k), with T(k,m) = 0 if k > 7+m.
T(k,m) = A194812(7+m,k).

Extensions

Terms a(11) and beyond from Andrew Howroyd, Feb 19 2020

A194708 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (8 + m).

Original entry on oeis.org

22, 7, 15, 6, 6, 10, 2, 5, 5, 10, 2, 3, 4, 5, 8, 1, 2, 2, 5, 4, 8, 1, 1, 2, 2, 4, 5, 7, 0, 1, 1, 2, 2, 4, 4, 8, 1, 0, 1, 1, 2, 2, 4, 4, 7, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 8. For further information see A182703 and A135010.

Examples

			Triangle begins:
  22,
   7, 15,
   6,  6, 10,
   2,  5,  5, 10,
   2,  3,  4,  5,  8,
   ...
For k = 1 and m = 1: T(1,1) = 22 because there are 22 parts of size 1 in the last section of the set of partitions of 9, since 8 + m = 9, so a(1) = 22.
For k = 2 and m = 1: T(2,1) = 7 because there are seven parts of size 2 in the last section of the set of partitions of 9, since 8 + m = 9, so a(2) = 7.
		

Crossrefs

Always the sum of row k = p(8) = A000041(8) = 22.
The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194707, this sequence, A194709, A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=8); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(8+m,k), with T(k,m) = 0 if k > 8+m.
T(k,m) = A194812(8+m,k).

Extensions

Terms a(11) and beyond from Andrew Howroyd, Feb 19 2020

A194709 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (9 + m).

Original entry on oeis.org

30, 15, 15, 6, 10, 14, 5, 5, 10, 10, 3, 4, 5, 8, 10, 2, 2, 5, 4, 8, 9, 1, 2, 2, 4, 5, 7, 9, 1, 1, 2, 2, 4, 4, 8, 8, 0, 1, 1, 2, 2, 4, 4, 7, 9, 1, 0, 1, 1, 2, 2, 4, 4, 7, 8, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 8, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 8, 0, 0, 0, 1, 0, 1, 1, 2, 2, 4, 4, 7, 8
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 9. For further information see A182703 and A135010.

Examples

			Triangle begins:
  30;
  15, 15;
   6, 10, 14;
   5,  5, 10, 10;
   3,  4,  5,  8, 10;
   2,  2,  5,  4,  8, 9;
  ...
For k = 1 and  m = 1; T(1,1) = 30 because there are 30 parts of size 1 in the last section of the set of partitions of 10, since 9 + m = 10, so a(1) = 30. For k = 2 and m = 1; T(2,1) = 15 because there are 15 parts of size 2 in the last section of the set of partitions of 10, since 9 + m = 10, so a(2) = 15.
		

Crossrefs

Always the sum of row k = p(9) = A000041(n) = 30.
The first (0-10) members of this family of triangles are A023531, A129186, A194702-A194708, this sequence, A194710.

Programs

  • PARI
    P(n)={my(M=matrix(n,n), d=9); M[1,1]=numbpart(d); for(m=1, n, forpart(p=m+d, for(k=1, #p, my(t=p[k]); if(t<=n && m<=t, M[t, m]++)), [2, m+d])); M}
    { my(T=P(10)); for(n=1, #T, print(T[n, 1..n])) } \\ Andrew Howroyd, Feb 19 2020

Formula

T(k,m) = A182703(9+m,k), with T(k,m) = 0 if k > 9+m.
T(k,m) = A194812(9+m,k).

Extensions

Terms a(7) and beyond from Andrew Howroyd, Feb 19 2020

A194703 Triangle read by rows: T(k,m) = number of occurrences of k in the last section of the set of partitions of (3 + m).

Original entry on oeis.org

3, 2, 1, 0, 1, 2, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 3, 2, 1, 0, 1, 2, 1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

Omar E. Pol, Feb 05 2012

Keywords

Comments

Sub-triangle of A182703 and also of A194812. Note that the sum of every row is also the number of partitions of 3. For further information see A182703 and A135010.

Examples

			Triangle begins:
3,
2, 1,
0, 1, 2,
1, 0, 1, 1,
0, 1, 0, 1, 1,
0, 0, 1, 0, 1, 1,
0, 0, 0, 1, 0, 1, 1,
0, 0, 0, 0, 1, 0, 1, 1,
0, 0, 0, 0, 0, 1, 0, 1, 1,
0, 0, 0, 0, 0, 0, 1, 0, 1, 1,
...
For k = 1 and m = 1, T(1,1) = 3 because there are three parts of size 1 in the last section of the set of partitions of 4, since 3 + m = 4, so a(1) = 3.
For k = 2 and m = 1, T(2,1) = 2 because there are two parts of size 2 in the last section of the set of partitions of 4, since 3 + m = 4, so a(2) = 2.
		

Crossrefs

Always the sum of row k = p(3) = A000041(3) = 3.
The first (0-10) members of this family of triangles are A023531, A129186, A194702, this sequence, A194704-A194710.

Formula

T(k,m) = A182703(3+m,k), with T(k,m) = 0 if k > 3+m.
T(k,m) = A194812(3+m,k).
Showing 1-9 of 9 results.