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-5 of 5 results.

A115086 Column 0 of triangle A115085.

Original entry on oeis.org

1, 1, 3, 12, 58, 321, 1963, 13053, 92946, 702864, 5599204, 46746501, 407019340, 3682922657, 34519445611, 334288656446, 3336972646500, 34270606413428, 361466138304372, 3909661505975148, 43305438098350844, 490632571238216052
Offset: 0

Views

Author

Paul D. Hanna, Jan 13 2006

Keywords

Crossrefs

Cf. A115085, A115087 (column 1), A115088 (column 2), A115089 (row sums); A115081.

A115087 Column 1 of triangle A115085.

Original entry on oeis.org

1, 2, 5, 21, 102, 579, 3601, 24426, 176858, 1359906, 10996740, 93136545, 821734072, 7529402477, 71404315785, 699210393923, 7053151126260, 73158494370744, 778922147312076, 8500606925203992, 94961268583354364, 1084632255967292304
Offset: 0

Views

Author

Paul D. Hanna, Jan 13 2006

Keywords

Crossrefs

Cf. A115085, A115086 (column 0), A115088 (column 2), A115089 (row sums); A115082.

A115088 Column 2 of triangle A115085.

Original entry on oeis.org

1, 3, 7, 32, 158, 933, 5939, 41385, 306070, 2403792, 19799468, 170676213, 1530176012, 14235081941, 136908376331, 1358591876186, 13876456179864, 145643421890800, 1568070473632644, 17295212337571836, 195161233968831068
Offset: 0

Views

Author

Paul D. Hanna, Jan 13 2006

Keywords

Crossrefs

Cf. A115085, A115086 (column 0), A115087 (column 1), A115089 (row sums); A115083.

A115089 Row sums of triangle A115085.

Original entry on oeis.org

1, 2, 6, 21, 91, 470, 2763, 17894, 125113, 932702, 7347025, 60761449, 524852444, 4716259252, 43936770258, 423178496553, 4203717419747, 42980494150963, 451494062943969, 4865135046178557, 53701937703205383, 606454041389250791
Offset: 0

Views

Author

Paul D. Hanna, Jan 13 2006

Keywords

Crossrefs

Cf. A115085, A115086 (column 0), A115087 (column 1), A115088 (column 2); A115084.

A115080 Triangle, read by rows, where T(n,k) equals the dot product of the vector of terms in row n that are to the right of T(n,k) with the vector of terms in column k that are above T(n,k): T(n,k) = Sum_{j=0..n-k-1} T(n,j+k+1)*T(j+k,k) for n > k+1 > 0, with T(n,n) = 1 and T(n,n-1) = n (n>=1).

Original entry on oeis.org

1, 1, 1, 3, 2, 1, 11, 5, 3, 1, 50, 20, 7, 4, 1, 257, 94, 31, 9, 5, 1, 1467, 507, 150, 44, 11, 6, 1, 9081, 3009, 853, 218, 59, 13, 7, 1, 60272, 19350, 5251, 1307, 298, 76, 15, 8, 1, 424514, 132920, 35109, 8313, 1881, 390, 95, 17, 9, 1, 3151226, 966962, 249332
Offset: 0

Views

Author

Paul D. Hanna, Jan 13 2006

Keywords

Comments

Triangle A115085 is the dual of this triangle.

Examples

			T(n,k) = [T(n,k+1),T(n,k+2),...,T(n,n)]*[T(k,k),T(k+1,k),...,T(n-1,k)]:
  T(3,0) = [5,3,1]*[1,1,3] = 5*1 + 3*1 + 1*3 = 11;
  T(4,1) = [7,4,1]*[1,2,5] = 7*1 + 4*2 + 1*5 = 20;
  T(5,1) = [31,9,5,1]*[1,2,5,20] = 31*1 + 9*2 + 5*5 + 1*20 = 94;
  T(6,2) = [44,11,6,1]*[1,3,7,31] = 44*1 + 11*3 + 6*7 + 1*31 = 150.
Triangle begins:
         1;
         1,       1;
         3,       2,       1;
        11,       5,       3,      1;
        50,      20,       7,      4,     1;
       257,      94,      31,      9,     5,     1;
      1467,     507,     150,     44,    11,     6,    1;
      9081,    3009,     853,    218,    59,    13,    7,   1;
     60272,   19350,    5251,   1307,   298,    76,   15,   8,   1;
    424514,  132920,   35109,   8313,  1881,   390,   95,  17,   9,  1;
   3151226,  966962,  249332,  57738, 12315,  2587,  494, 116,  19, 10,  1;
  24510411, 7396366, 1873214, 422948, 88737, 17377, 3437, 610, 139, 21, 11, 1;
  ...
		

Crossrefs

Cf. A115081 (column 0), A115082 (column 1), A115083 (column 2), A115084 (row sums); A115085 (dual triangle).

Programs

  • PARI
    {T(n,k)=if(n==k,1,if(n==k+1,n, sum(j=0,n-k-1,T(n,j+k+1)*T(j+k,k))))}
    for(n=0,12,for(k=0,n, print1(T(n,k),", "));print(""))
Showing 1-5 of 5 results.