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

A121422 Column 1 of triangle A121420.

Original entry on oeis.org

1, 3, 15, 118, 1317, 19311, 352636, 7722840, 197354133, 5764942816, 189460961985, 6917588290044, 277765971072770, 12163275845132298, 576793897136731632, 29444368084753254610, 1609805318425385690712, 93843785859803533422675
Offset: 0

Views

Author

Paul D. Hanna, Aug 23 2006

Keywords

Comments

Also column 2 of square array A136737.
A121420 is the matrix cube of triangle A121412; row n of triangle T=A121412 equals row (n-1) of T^(n+1) with an appended '1'.

Crossrefs

Cf. A121420 (triangle); other columns: A121421, A121423.

Programs

  • PARI
    {a(n)=local(A=Mat(1), B); for(m=1, n+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i,j]=1, B[i, j]=(A^i)[i-1, j]); )); A=B); return((A^3)[n+2, 2])}

Extensions

Edited by N. J. A. Sloane, Oct 30 2008 at the suggestion of R. J. Mathar

A121417 Column 1 of triangle A121416.

Original entry on oeis.org

1, 2, 9, 69, 769, 11346, 208914, 4613976, 118840164, 3496297632, 115638728395, 4246267163601, 171369282105510, 7538270885559264, 358926669220446804, 18389706733665138450, 1008742283718489346668, 58981158542987625464424
Offset: 0

Views

Author

Paul D. Hanna, Aug 22 2006

Keywords

Comments

Also column 1 of square array A136737.
A121416 is the matrix square of triangle A121412; row n of triangle T=A121412 equals row (n-1) of T^(n+1) with an appended '1'.

Crossrefs

Cf. A121416 (triangle); other columns: A121418, A121419.

Programs

  • PARI
    {a(n)=local(A=Mat(1), B); for(m=1, n+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i,j]=1, B[i, j]=(A^i)[i-1, j]); )); A=B); return((A^2)[n+2, 2])}

Extensions

Edited by N. J. A. Sloane, Oct 30 2008 at the suggestion of R. J. Mathar

A136737 Square array, read by antidiagonals, where T(n,k) = T(n,k-1) + T(n-1,k+n+1) for n>0, k>0, such that T(n,0) = T(n-1,n+1) for n>0 with T(0,k)=1 for k>=0.

Original entry on oeis.org

1, 1, 1, 4, 2, 1, 30, 9, 3, 1, 335, 69, 15, 4, 1, 4984, 769, 118, 22, 5, 1, 92652, 11346, 1317, 178, 30, 6, 1, 2065146, 208914, 19311, 1995, 250, 39, 7, 1, 53636520, 4613976, 352636, 29126, 2820, 335, 49, 8, 1, 1589752230, 118840164, 7722840, 528097, 41061
Offset: 0

Views

Author

Paul D. Hanna, Jan 19 2008

Keywords

Examples

			Square array begins:
(1,1), 1, 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,...;
(1,2,3), 4, 5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,...;
(4,9,15,22), 30, 39,49,60,72,85,99,114,130,147,165,184,204,225,247,...;
(30,69,118,178,250), 335, 434,548,678,825,990,1174,1378,1603,1850,...;
(335,769,1317,1995,2820,3810), 4984, 6362,7965,9815,11935,14349,...;
(4984,11346,19311,29126,41061,55410,72492), 92652, 116262, 143722,...;
(92652,208914,352636,528097,740035,993678,1294776,1649634), 2065146,..;
(2065146,4613976,7722840,11476963,15971180,21310710,27611970,35003430,43626510),..;
where the rows are generated as follows.
Start row 0 with all 1's; from then on,
remove the first n+2 terms (shown in parenthesis) from row n
and then take partial sums to yield row n+1.
Note the second upper diagonal forms column 0 and equals A121413:
[1,1,4,30,335,4984,92652,2065146,53636520,1589752230,52926799310,...].
which equals column 3 of triangle A101479:
1;
1, 1;
1, 1, 1;
3, 2, 1, 1;
19, 9, 3, 1, 1;
191, 70, 18, 4, 1, 1;
2646, 795, 170, 30, 5, 1, 1;
46737, 11961, 2220, 335, 45, 6, 1, 1;
1003150, 224504, 37149, 4984, 581, 63, 7, 1, 1; ...
where row n equals row (n-1) of T^(n-1) with appended '1'.
		

Crossrefs

Cf. A101479; columns: A121413, A121417, A121422; diagonals: A121427, A136741; variants: A136730, A136733.

Programs

  • PARI
    {T(n,k)=if(k<0,0,if(n==0,1,T(n,k-1) + T(n-1,k+n+1)))}

A121426 Rectangular table, read by antidiagonals, where row n is equal to column 1 of matrix power A121412^(n+1) for n>=0.

Original entry on oeis.org

1, 1, 1, 1, 2, 4, 1, 3, 9, 30, 1, 4, 15, 69, 335, 1, 5, 22, 118, 769, 4984, 1, 6, 30, 178, 1317, 11346, 92652, 1, 7, 39, 250, 1995, 19311, 208914, 2065146, 1, 8, 49, 335, 2820, 29126, 352636, 4613976, 53636520, 1, 9, 60, 434, 3810, 41061, 528097, 7722840, 118840164
Offset: 0

Views

Author

Paul D. Hanna, Aug 26 2006

Keywords

Examples

			Table of column 1 in matrix powers of triangle H=A121412 begins:
H^1: 1, 1, 4, 30, 335, 4984, 92652, 2065146, 53636520, ...
H^2: 1, 2, 9, 69, 769, 11346, 208914, 4613976, 118840164, ...
H^3: 1, 3, 15, 118, 1317, 19311, 352636, 7722840, 197354133, ...
H^4: 1, 4, 22, 178, 1995, 29126, 528097, 11476963, 291124693, ...
H^5: 1, 5, 30, 250, 2820, 41061, 740035, 15971180, 402319275, ...
H^6: 1, 6, 39, 335, 3810, 55410, 993678, 21310710, 533345745, ...
H^7: 1, 7, 49, 434, 4984, 72492, 1294776, 27611970, 686872893, ...
H^8: 1, 8, 60, 548, 6362, 92652, 1649634, 35003430, 865852191, ...
H^9: 1, 9, 72, 678, 7965, 116262, 2065146, 43626510, 1073540871, ...
Rearrangement of the upper part of the table forms A121431, which is
the number of subpartitions of partition [0,0,1,1,1,2,2,2,2,3,...]:
1,1, 1,2,3, 4,9,15,22, 30,69,118,178,250, 335,769,1317,1995,2820,...
		

Crossrefs

Cf. A121427 (diagonal), A121431; rows: A121413, A121417, A121422; related tables: A121424, A121428; related triangles: A121412, A121416, A121420.

Programs

  • PARI
    {T(n,k)=local(H=Mat(1), B); for(m=1, k+2, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i, j]=1, B[i, j]=(H^i)[i-1, j]); )); H=B); return((H^(n+1))[k+2, 2])}

A121431 Number of subpartitions of partition P=[0,0,1,1,1,2,2,2,2,3,3,3,3,3,4,...] (A052146).

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 9, 15, 22, 30, 69, 118, 178, 250, 335, 769, 1317, 1995, 2820, 3810, 4984, 11346, 19311, 29126, 41061, 55410, 72492, 92652, 208914, 352636, 528097, 740035, 993678, 1294776, 1649634, 2065146, 4613976, 7722840, 11476963, 15971180
Offset: 0

Views

Author

Paul D. Hanna, Jul 30 2006

Keywords

Comments

See A115728 for the definition of subpartitions of a partition.

Examples

			The g.f. may be illustrated by:
1/(1-x) = (1 + 1*x)*(1-x)^0 + (x^2 + 2*x^3 + 3*x^4)*(1-x)^1 +
(4*x^5 + 9*x^6 + 15*x^7 + 22*x^8)*(1-x)^2 +
(30*x^9 + 69*x^10 + 118*x^11 + 178*x^12 + 250*x^13)*(1-x)^3 +
(335*x^14 + 769*x^15 + 1317*x^16 + 1995*x^17 + 2820*x^18 + 3810*x^19)*(1-x)^4 +...
When the sequence is put in the form of a triangle:
1, 1,
1, 2, 3,
4, 9, 15, 22,
30, 69, 118, 178, 250,
335, 769, 1317, 1995, 2820, 3810,
4984, 11346, 19311, 29126, 41061, 55410, 72492,
92652, 208914, 352636, 528097, 740035, 993678, 1294776, ...
then the columns of this triangle form column 1 (with offset)
of successive matrix powers of triangle H=A121412.
This sequence is embedded in table A121426 as follows.
Column 1 of successive powers of matrix H begin:
H^1: [1,1,4,30,335,4984,92652,2065146,53636520,...];
H^2: [1,2,9,69,769,11346,208914,4613976,118840164,...];
H^3: 1, [3,15,118,1317,19311,352636,7722840,197354133,...];
H^4: 1,4, [22,178,1995,29126,528097,11476963,291124693,...];
H^5: 1,5,30, [250,2820,41061,740035,15971180,402319275,...];
H^6: 1,6,39,335, [3810,55410,993678,21310710,533345745,...];
H^7: 1,7,49,434,4984, [72492,1294776,27611970,686872893,...];
H^8: 1,8,60,548,6362,92652, [1649634,35003430,865852191,...];
H^9: 1,9,72,678,7965,116262,2065146, [43626510,1073540871,...];
the terms enclosed in brackets form this sequence.
		

Crossrefs

Cf. A121412 (triangle H), A121416 (H^2), A121420 (H^3); A121426, A121427; column 1 of H^n: A121414, A121418, A121422; variants: A121430, A121432, A121433.

Programs

  • PARI
    {a(n)=local(A); if(n==0,1,A=x+x*O(x^n); for(k=0, n, A+=polcoeff(A, k)*x^k*(1-(1-x)^( (sqrtint(8*k+9)+1)\2 - 1 ) )); polcoeff(A, n))}

Formula

G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n*(1-x)^A052146(n).

A136741 Diagonal of square array A136737, one place above the main diagonal.

Original entry on oeis.org

1, 3, 22, 250, 3810, 72492, 1649634, 43626510, 1313526375, 44332221175, 1657043432088, 67929461003560, 3029864359322346, 146058681728370600, 7566706624571096610, 419220650458638848514, 24733868801871384287055
Offset: 0

Views

Author

Paul D. Hanna, Jan 19 2008

Keywords

Crossrefs

Showing 1-6 of 6 results.