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

A126465 Triangle T, read by rows, where row n equals row (n-1) of matrix power T^(n(n+1)/2) concatenated with a trailing '1', for n>0, with T(0,0) = 1.

Original entry on oeis.org

1, 1, 1, 3, 1, 1, 33, 6, 1, 1, 855, 105, 10, 1, 1, 40475, 3710, 255, 15, 1, 1, 3039204, 219625, 11935, 525, 21, 1, 1, 331630320, 19545316, 879571, 31584, 966, 28, 1, 1, 49563943161, 2437990653, 93365328, 2856819, 72786, 1638, 36, 1, 1
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Comments

Examples

			Triangle T begins:
1,
1, 1,
3, 1, 1,
33, 6, 1, 1,
855, 105, 10, 1, 1,
40475, 3710, 255, 15, 1, 1,
3039204, 219625, 11935, 525, 21, 1, 1,
331630320, 19545316, 879571, 31584, 966, 28, 1, 1,
49563943161, 2437990653, 93365328, 2856819, 72786, 1638, 36, 1, 1, ...
Matrix cube T^3 begins:
1;
[3, 1]; <-- row 1 of T^3 + '1' = row 2 of T;
12, 3, 1; ...
Matrix power T^6 begins:
1;
6, 1;
[33, 6, 1]; <-- row 2 of T^6 + '1' = row 3 of T.
Matrix power T^10 begins:
1;
10, 1;
75, 10, 1;
[855, 105, 10, 1]; <-- row 3 of T^10 + '1' = row 4 of T.
Matrix power T^15 begins:
1;
15, 1;
150, 15, 1;
1895, 195, 15, 1;
[40475, 3710, 255, 15, 1]; <-- row 4 of T^15 + '1' = row 5 of T.
		

Crossrefs

Columns: A126466, A126467, A126468; A126469 (row sums); A126460 (dual); A101479 (variant).

Programs

  • PARI
    {T(n,k)=local(M=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!,r-c))), N=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!+1,r-c)))); (N*M^-1)[n+1,k+1]}

A126466 Column 0 of triangle A126465.

Original entry on oeis.org

1, 1, 3, 33, 855, 40475, 3039204, 331630320, 49563943161, 9722245517970, 2423526680920125, 748560249534719259, 280702726068079355157, 125661789748507921799800, 66215986172320048509110050
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Crossrefs

Cf. A126465, A126467, A126468; A126469 (row sums).

Programs

  • PARI
    {a(n)=local(M=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!,r-c))), N=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!+1,r-c)))); (N*M^-1)[n+1,1]}

A126468 Column 2 of triangle A126465.

Original entry on oeis.org

1, 1, 10, 255, 11935, 879571, 93365328, 13464554610, 2531141851260, 601339958510170, 176255315943299736, 62514948119465302825, 26407795709641456484010, 13109371824722841349352160
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Crossrefs

Cf. A126465, A126466, A126467; A126469 (row sums).

Programs

  • PARI
    {a(n)=local(M=matrix(n+3,n+3,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!,r-c))), N=matrix(n+3,n+3,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!+1,r-c)))); (N*M^-1)[n+3,3]}

A126469 Row sums of triangle A126465.

Original entry on oeis.org

1, 2, 5, 41, 972, 44457, 3271312, 352087787, 52098230423, 10141977387056, 2513121624034518, 772525844883337679, 288558785171538716889, 128760943237115947732171, 67665205307818875323789155
Offset: 0

Views

Author

Paul D. Hanna, Dec 27 2006

Keywords

Crossrefs

Programs

  • PARI
    {a(n)=local(M=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!,r-c))), N=matrix(n+1,n+1,r,c,if(r>=c,binomial((r-1)*r*(r+1)/3!-(c-1)*c*(c+1)/3!+1,r-c)))); sum(k=0,n,(N*M^-1)[n+1,k+1])}
Showing 1-4 of 4 results.