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

A121416 Matrix square of triangle A121412.

Original entry on oeis.org

1, 2, 1, 7, 2, 1, 43, 9, 2, 1, 403, 69, 11, 2, 1, 5188, 769, 101, 13, 2, 1, 85569, 11346, 1305, 139, 15, 2, 1, 1725291, 208914, 21745, 2043, 183, 17, 2, 1, 41145705, 4613976, 443329, 37971, 3015, 233, 19, 2, 1, 1133047596, 118840164, 10679494, 850260
Offset: 0

Views

Author

Paul D. Hanna, Aug 22 2006

Keywords

Comments

Row n of triangle T=A121412 equals row (n-1) of T^(n+1) with an appended '1'.

Examples

			Triangle begins:
1;
2, 1;
7, 2, 1;
43, 9, 2, 1;
403, 69, 11, 2, 1;
5188, 769, 101, 13, 2, 1;
85569, 11346, 1305, 139, 15, 2, 1;
1725291, 208914, 21745, 2043, 183, 17, 2, 1;
41145705, 4613976, 443329, 37971, 3015, 233, 19, 2, 1;
1133047596, 118840164, 10679494, 850260, 61860, 4253, 289, 21, 2, 1;
		

Crossrefs

Programs

  • PARI
    {T(n, k)=local(A=Mat(1), B); for(m=1, n+1, 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+1, k+1])}

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

A121421 Column 0 of triangle A121420.

Original entry on oeis.org

1, 3, 12, 76, 711, 9054, 147471, 2938176, 69328365, 1891371807, 58575539361, 2030011517685, 77827890696820, 3270046577551695, 149407542447596319, 7374639622066056408, 391044078030333899385, 22168014954558449549349
Offset: 0

Views

Author

Paul D. Hanna, Aug 23 2006

Keywords

Comments

Also column 2 of square array A136733.
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: A121422, A121423.

Programs

  • PARI
    {a(n)=local(A=Mat(1), B); for(m=1, n+1, 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+1, 1])}

Extensions

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

A121425 Main diagonal of rectangular table A121424.

Original entry on oeis.org

1, 2, 12, 118, 1605, 27816, 585046, 14459138, 410368743, 13146830110, 469123986529, 18447791712945, 792514583941223, 36925394368325295, 1854525584914459755, 99872579714406393286, 5740977285851988017769
Offset: 0

Views

Author

Paul D. Hanna, Aug 26 2006

Keywords

Comments

Also main diagonal of square array A136733.

Crossrefs

Programs

  • PARI
    {a(n)=local(H=Mat(1), B); for(m=1, n+1, 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))[n+1, 1])}

Formula

a(n) = [A121412^(n+1)](n,0) for n>=0; i.e., (n+1)-th term of column 0 in matrix power A121412^(n+1).

Extensions

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

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

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 1, 3, 7, 18, 1, 4, 12, 43, 170, 1, 5, 18, 76, 403, 2220, 1, 6, 25, 118, 711, 5188, 37149, 1, 7, 33, 170, 1107, 9054, 85569, 758814, 1, 8, 42, 233, 1605, 13986, 147471, 1725291, 18301950, 1, 9, 52, 308, 2220, 20171, 225363, 2938176, 41145705
Offset: 0

Views

Author

Paul D. Hanna, Aug 26 2006

Keywords

Examples

			Table of column 0 in matrix powers of triangle H=A121412 begins:
H^1: 1, 1, 3, 18, 170, 2220, 37149, 758814, 18301950,...
H^2: 1, 2, 7, 43, 403, 5188, 85569, 1725291, 41145705,...
H^3: 1, 3, 12, 76, 711, 9054, 147471, 2938176, 69328365,...
H^4: 1, 4, 18, 118, 1107, 13986, 225363, 4441557, 103755660,...
H^5: 1, 5, 25, 170, 1605, 20171, 322075, 6285390, 145453290,...
H^6: 1, 6, 33, 233, 2220, 27816, 440785, 8526057, 195579123,...
H^7: 1, 7, 42, 308, 2968, 37149, 585046, 11226958, 255436293,...
H^8: 1, 8, 52, 396, 3866, 48420, 758814, 14459138, 326487241,...
H^9: 1, 9, 63, 498, 4932, 61902, 966477, 18301950, 410368743,...
Rearrangement of the upper half of the table forms A121430, which is
the number of subpartitions of partition [0,1,1,2,2,2,3,3,3,3,4,...]:
1, 1,2, 3,7,12, 18,43,76,118, 170,403,711,1107,1605, 2220,...
		

Crossrefs

Cf. A121425 (diagonal), A121430; rows: A101483, A121418, A121421; related tables: A121426, A121428; related triangles: A121412, A121416, A121420.

Programs

  • PARI
    {T(n,k)=local(H=Mat(1), B); for(m=1, k+1, 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+1, 1])}

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).

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

Original entry on oeis.org

1, 1, 1, 3, 2, 1, 18, 7, 3, 1, 170, 43, 12, 4, 1, 2220, 403, 76, 18, 5, 1, 37149, 5188, 711, 118, 25, 6, 1, 758814, 85569, 9054, 1107, 170, 33, 7, 1, 18301950, 1725291, 147471, 13986, 1605, 233, 42, 8, 1, 508907970, 41145705, 2938176, 225363, 20171, 2220, 308
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,...;
(3,7,12), 18, 25,33,42,52,63,75,88,102,117,133,150,168,187,207,228,...;
(18,43,76,118), 170, 233,308,396,498,615,748,898,1066,1253,1460,...;
(170,403,711,1107,1605), 2220, 2968,3866,4932,6185,7645,9333,11271,...;
(2220,5188,9054,13986,20171,27816), 37149, 48420,61902,77892,96712,...;
(37149,85569,147471,225363,322075,440785,585046), 758814, 966477,...;
(758814,1725291,2938176,4441557,6285390,8526057,11226958,14459138), ...;
where the rows are generated as follows.
Start row 0 with all 1's; from then on,
remove the first n+1 terms (shown in parenthesis) from row n
and then take partial sums to yield row n+1.
Note the first upper diagonal forms column 0 and equals A101483:
[1,1,3,18,170,2220,37149,758814,18301950,508907970,16023271660,...]
which equals column 2 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: A101483, A121418, A121421; A121425 (main diagonal); variants: A136730, A136737.

Programs

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

A121419 Column 2 of triangle A121416.

Original entry on oeis.org

1, 2, 11, 101, 1305, 21745, 443329, 10679494, 296547736, 9319259500, 326788327650, 12643827604842, 534889691765631, 24555735428777265, 1215611513578215355, 64542477563559758310, 3658333757447085090365
Offset: 0

Views

Author

Paul D. Hanna, Aug 22 2006

Keywords

Comments

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: A121417, A121418.

Programs

  • PARI
    {a(n)=local(A=Mat(1), B); for(m=1, n+3, 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+3, 3])}

A121432 Number of subpartitions of partition P=[0,0,0,1,1,1,1,2,2,2,2,2,3,...], where P(n) = [(sqrt(8*n+25) - 5)/2].

Original entry on oeis.org

1, 1, 1, 1, 2, 3, 4, 5, 11, 18, 26, 35, 45, 101, 169, 250, 345, 455, 581, 1305, 2190, 3255, 4520, 6006, 7735, 9730, 21745, 36360, 53916, 74781, 99351, 128051, 161336, 199692, 443329, 737051, 1087583, 1502270, 1989113, 2556806, 3214774, 3973212, 4843125
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 + x + x^2)*(1-x)^0 + (x^3 + 2*x^4 + 3*x^5 + 4*x^6)*(1-x)^1 +
(5*x^7 + 11*x^8 + 18*x^9 + 26*x^10 + 35*x^11)*(1-x)^2 +
(45*x^12 + 101*x^13 + 169*x^14 + 250*x^15 + 345*x^16 + 455*x^17)*(1-x)^3 +
(581*x^18 + 1305*x^19 + 2190*x^20 + 3255*x^21 + 4520*x^22 + 6006*x^23 + 7735*x^24)*(1-x)^4 +...
When the sequence is put in the form of a triangle:
1, 1, 1,
1, 2, 3, 4,
5, 11, 18, 26, 35,
45, 101, 169, 250, 345, 455,
581, 1305, 2190, 3255, 4520, 6006, 7735,
9730, 21745, 36360, 53916, 74781, 99351, 128051, 161336, ...
then the columns of this triangle form column 2 (with offset)
of successive matrix powers of triangle H=A121412.
This sequence is embedded in table A121428 as follows.
Column 2 of successive powers of matrix H begin:
H^1: [1,1,5,45,581,9730,199692,4843125,135345925,...];
H^2: [1,2,11,101,1305,21745,443329,10679494,296547736,...];
H^3: [1,3,18,169,2190,36360,737051,17645187,487025244,...];
H^4: 1, [4,26,250,3255,53916,1087583,25889969,710546530,...];
H^5: 1,5, [35,345,4520,74781,1502270,35578270,971255050,...];
H^6: 1,6,45, [455,6006,99351,1989113,46890210,1273698270,...];
H^7: 1,7,56,581, [7735,128051,2556806,60022670,1622857887,...];
H^8: 1,8,68,724,9730, [161336,3214774,75190410,2024181693,...];
H^9: 1,9,81,885,12015,199692, [3973212,92627235,2483617140,...];
the terms enclosed in brackets form this sequence.
		

Crossrefs

Cf. A121412 (triangle H), A121416 (H^2), A121420 (H^3); A121428, A121429; column 1 of H^n: A121414, A121418, A121422; variants: A121430, A121431, 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+25)+1)\2 - 2 ) )); polcoeff(A, n))}

Formula

G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n*(1-x)^P(n), where P(n)=[(sqrt(8*n+25)-5)/2].

A121433 Number of subpartitions of partition P=[0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,...], where P(n) = [(sqrt(8*n+49) - 7)/2].

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 13, 21, 30, 40, 51, 63, 139, 229, 334, 455, 593, 749, 924, 2043, 3378, 4951, 6785, 8904, 11333, 14098, 17226, 37971, 62655, 91728, 125671, 164997, 210252, 262016, 320904, 387567, 850260, 1397268, 2038545, 2784850, 3647788
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 + x + x^2 + x^3)*(1-x)^0 +
(x^4 + 2*x^5 + 3*x^6 + 4*x^7 + 5*x^8)*(1-x)^1 +
(6*x^9 + 13*x^10 + 21*x^11 + 30*x^12 + 40*x^13 + 51*x^14)*(1-x)^2 +
(63*x^15 + 139*x^16 + 229*x^17 + 334*x^18 + 455*x^19 + 593*x^20 + 749*x^21)*(1-x)^3 +
When the sequence is put in the form of a triangle:
1, 1, 1, 1,
1, 2, 3, 4, 5,
6, 13, 21, 30, 40, 51,
63, 139, 229, 334, 455, 593, 749,
924, 2043, 3378, 4951, 6785, 8904, 11333, 14098,
17226, 37971, 62655, 91728, 125671, 164997, 210252, 262016, 320904,
then the columns of this triangle form column 3 (with offset)
of successive matrix powers of triangle H=A121412.
Column 3 of successive powers of matrix H begin:
H^1: [1,1,6,63,924,17226,387567,10182744,305379129,...];
H^2: [1,2,13,139,2043,37971,850260,22224723,663173878,...];
H^3: [1,3,21,229,3378,62655,1397268,36351147,1079567193,...];
H^4: [1,4,30,334,4951,91728,2038545,52807195,1561301733,...];
H^5: 1, [5,40,455,6785,125671,2784850,71859275,2115718545,...];
H^6: 1,6, [51,593,8904,164997,3647788,93796335,2750797677,...];
H^7: 1,7,63, [749,11333,210252,4639852,118931226,3475200792,...];
H^8: 1,8,76,924, [14098,262016,5774466,147602118,4298315847,...];
H^9: 1,9,90,1119,17226, [320904,7066029,180173970,5230303902,...];
the terms enclosed in brackets form this sequence.
		

Crossrefs

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

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+49)+1)\2 - 3 ) )); polcoeff(A, n))}

Formula

G.f.: 1/(1-x) = Sum_{n>=0} a(n)*x^n*(1-x)^P(n), where P(n)=[(sqrt(8*n+49)-7)/2].
Showing 1-10 of 10 results.