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 25 results. Next

A223168 Triangle S(n, k) by rows: coefficients of 2^((n-1)/2)*(x^(1/2)*d/dx)^n when n is odd, and of 2^(n/2)*(x^(1/2)*d/dx)^n when n is even.

Original entry on oeis.org

1, 1, 2, 3, 2, 3, 12, 4, 15, 20, 4, 15, 90, 60, 8, 105, 210, 84, 8, 105, 840, 840, 224, 16, 945, 2520, 1512, 288, 16, 945, 9450, 12600, 5040, 720, 32, 10395, 34650, 27720, 7920, 880, 32, 10395, 124740, 207900, 110880, 23760, 2112, 64, 135135, 540540, 540540, 205920, 34320, 2496, 64
Offset: 0

Views

Author

Udita Katugampola, Mar 17 2013

Keywords

Comments

Also coefficients in the expansion of k-th derivative of exp(n*x^2), see Mathematica program. - Vaclav Kotesovec, Jul 16 2013

Examples

			Triangle begins:
       1;
       1,      2;
       3,      2;
       3,     12,      4;
      15,     20,      4;
      15,     90,     60,      8;
     105,    210,     84,      8;
     105,    840,    840,    224,    16;
     945,   2520,   1512,    288,    16;
     945,   9450,  12600,   5040,   720,   32;
   10395,  34650,  27720,   7920,   880,   32;
   10395, 124740, 207900, 110880, 23760, 2112, 64;
  135135, 540540, 540540, 205920, 34320, 2496, 64;
  .
Expansion takes the form:
2^0 (x^(1/2)*d/dx)^1 = 1*x^(1/2)*d/dx.
2^1 (x^(1/2)*d/dx)^2 = 1*d/dx + 2*x*d^2/dx^2.
2^1 (x^(1/2)*d/dx)^3 = 3*x^(1/2)*d^2/dx^2 + 2*x^(3/2)*d^3/dx^3.
2^2 (x^(1/2)*d/dx)^4 = 3*d^2/dx^2 + 12*x*d^3/dx^3 + 4*x^2*d^4/dx^4.
2^2 (x^(1/2)*d/dx)^5 = 15*x^(1/2)*d^3/dx^3 + 20*x^(3/2)*d^4/dx^4 + 4*x^(5/2)*d^5/dx^5.
`
`
		

Crossrefs

Odd rows includes absolute values of A098503 from right to left.

Programs

  • Maple
    a[0]:= f(x);
    for i from 1 to 13 do
    a[i]:= simplify(2^((i+1)mod 2)*x^(1/2)*(diff(a[i-1],x$1)));
    end do;
  • Mathematica
    Flatten[CoefficientList[Expand[FullSimplify[Table[D[E^(n*x^2),{x,k}]/(E^(n*x^2)*(2*n)^Floor[(k+1)/2]),{k,1,13}]]]/.x->1,n]] (* Vaclav Kotesovec, Jul 16 2013 *)

A223172 Triangle S(n,k) by rows: coefficients of 6^((n-1)/2)*(x^(1/6)*d/dx)^n when n is odd, and of 6^(n/2)*(x^(5/6)*d/dx)^n when n is even.

Original entry on oeis.org

1, 1, 6, 7, 6, 7, 84, 36, 91, 156, 36, 91, 1638, 1404, 216, 1729, 4446, 2052, 216, 1729, 41496, 53352, 16416, 1296, 43225, 148200, 102600, 21600, 1296, 43225, 1296750, 2223000, 1026000, 162000, 7776, 1339975, 5742750, 5301000, 1674000, 200880, 7776
Offset: 0

Views

Author

Udita Katugampola, Mar 20 2013

Keywords

Examples

			Triangle begins:
        1;
        1,        6;
        7,        6;
        7,       84,        36;
       91,      156,        36;
       91,     1638,      1404,      216;
     1729,     4446,      2052,      216;
     1729,    41496,     53352,    16416,     1296;
    43225,   148200,    102600,    21600,     1296;
    43225,  1296750,   2223000,  1026000,   162000,    7776;
  1339975,  5742750,   5301000,  1674000,   200880,    7776;
  1339975, 48239100, 103369500, 63612000, 15066000, 1446336, 46656;
		

Crossrefs

Programs

  • Maple
    a[0]:= f(x):
    for i from 1 to 13 do
    a[i] := simplify(6^((i+1)mod 2)*x^((4((i+1)mod 2)+1)/6)*(diff(a[i-1],x$1 )));
    end do;

A223511 Triangle T(n,k) represents the coefficients of (x^9*d/dx)^n, where n=1,2,3,...;generalization of Stirling numbers of second kind A008277, Lah-numbers A008297.

Original entry on oeis.org

1, 9, 1, 153, 27, 1, 3825, 855, 54, 1, 126225, 32895, 2745, 90, 1, 5175225, 1507815, 150930, 6705, 135, 1, 253586025, 80565975, 9205245, 499590, 13860, 189, 1, 14454403425, 4926412575, 623675430, 39180645, 1345050, 25578, 252, 1
Offset: 1

Views

Author

Udita Katugampola, Mar 23 2013

Keywords

Comments

Also the Bell transform of A045755(n+1). For the definition of the Bell transform see A264428. - Peter Luschny, Jan 29 2016

Examples

			1;
9,1;
153,27,1;
3825,855,54,1;
126225,32895,2745,90,1;
5175225,1507815,150930,6705,135,1;
253586025,80565975,9205245,499590,13860,189,1;
14454403425,4926412575,623675430,39180645,1345050,25578,252,1;
		

Crossrefs

Programs

  • Maple
    b[0]:=g(x):
    for j from 1 to 10 do
    b[j]:=simplify(x^9*diff(b[j-1],x$1);
    end do;
    # The function BellMatrix is defined in A264428.
    # Adds (1,0,0,0, ..) as column 0.
    BellMatrix(n -> mul(8*k+1, k=0..n), 10); # Peter Luschny, Jan 29 2016
  • Mathematica
    rows = 8;
    t = Table[Product[8k+1, {k, 0, n}], {n, 0, rows}];
    T[n_, k_] := BellY[n, k, t];
    Table[T[n, k], {n, 1, rows}, {k, 1, n}] // Flatten (* Jean-François Alcover, Jun 22 2018, after Peter Luschny *)

A223522 Triangle T(n,k) represents the coefficients of (x^20*d/dx)^n, where n=1,2,3,...; generalization of Stirling numbers of second kind A008277, Lah-numbers A008297.

Original entry on oeis.org

1, 20, 1, 780, 60, 1, 45240, 4320, 120, 1, 3483480, 382200, 13800, 200, 1, 334414080, 40556880, 1734600, 33600, 300, 1, 38457619200, 5039012160, 243505080, 5699400, 69300, 420, 1
Offset: 1

Views

Author

Udita Katugampola, Mar 23 2013

Keywords

Examples

			1;
20,1;
780,60,1;
45240,4320,120,1;
3483480,382200,13800,200,1;
334414080,40556880,1734600,33600,300,1;
38457619200,5039012160,243505080,5699400,69300,420,1;
5153320972800,718724260800,38155703040,1024322880,15262800,127680,560,1;
		

Crossrefs

Programs

  • Maple
    b[0]:=f(x):
    for j from 1 to 10 do
    b[j]:=simplify(x^20*diff(b[j-1],x$1);
    end do;

A098503 Triangle T(n,k) by rows: coefficient [x^(n-k)] of 2^n * n! *L(n,1/2,x), with L the generalized Laguerre polynomials in the Abramowitz-Stegun normalization.

Original entry on oeis.org

1, -2, 3, 4, -20, 15, -8, 84, -210, 105, 16, -288, 1512, -2520, 945, -32, 880, -7920, 27720, -34650, 10395, 64, -2496, 34320, -205920, 540540, -540540, 135135, -128, 6720, -131040, 1201200, -5405400, 11351340, -9459450, 2027025, 256, -17408
Offset: 0

Views

Author

Ralf Stephan, Sep 15 2004

Keywords

Examples

			2^0 *0! *L(0,1/2,x) = 1.
2^1 *1! *L(1,1/2,x) = -2*x + 3.
2^2 *2! *L(2,1/2,x) = 4*x^2 - 20*x + 15.
2^3 *3! *L(3,1/2,x) = -8*x^3 + 84*x^2 - 210*x + 105.
2^4 *4! *L(4,1/2,x) = 16*x^4 - 288*x^3 + 1512*x^2 - 2520*x + 945.
Triangle begins:
    1;
   -2,     3;
    4,   -20,    15;
   -8,    84,  -210,     105;
   16,  -288,  1512,   -2520,    945;
  -32,   880, -7920,   27720, -34650,   10395;
   64, -2496, 34320, -205920, 540540, -540540, 135135;
		

Crossrefs

Columns include (-1)^n times A000079, n/2*A014480. Diagonals include A001147, -A000906, 4*A001881.

Programs

  • Mathematica
    Table[Reverse[Table[2^n*(-1)^k*n!/k!*Binomial[n + 1/2, n - k], {k, 0, n}]], {n, 0, 7}] (* T. D. Noe, Apr 05 2013 *)

Formula

T(n, k) = (-2)^n * (-1)^k * n!/(n-k)! * binomial(n+1/2,k), = (-1)^(n+k) *2^(n-2k) *k! *binomial(2n+1,2k)*binomial(2k,k), n>=0, k<=n.

A223169 Triangle S(n,k) by rows: coefficients of 3^((n-1)/2)*(x^(1/3)*d/dx)^n when n is odd, and of 3^(n/2)*(x^(2/3)*d/dx)^n when n is even.

Original entry on oeis.org

1, 1, 3, 4, 3, 4, 24, 9, 28, 42, 9, 28, 252, 189, 27, 280, 630, 270, 27, 280, 3360, 3780, 1080, 81, 3640, 10920, 7020, 1404, 81, 3640, 54600, 81900, 35100, 5265, 243, 58240, 218400, 187200, 56160, 6480, 243, 58240, 1048320, 1965600
Offset: 0

Views

Author

Udita Katugampola, Mar 18 2013

Keywords

Examples

			Triangle begins:
1;
1, 3;
4, 3;
4, 24, 9;
28, 42, 9;
28, 252, 189, 27;
280, 630, 270, 27;
280, 3360, 3780, 1080, 81;
3640, 10920, 7020, 1404, 81;
3640, 54600, 81900, 35100, 5265, 243,
58240, 218400, 187200, 56160, 6480, 243
		

Crossrefs

Programs

  • Maple
    a[0]:= f(x):
    for i from 1 to 13 do
    a[i] := simplify(3^((i+1)mod 2)*x^(((i+1)mod 2+1)/3)*(diff(a[i-1],x$1 )));
    end do;

A223170 Triangle S(n,k) by rows: coefficients of 4^((n-1)/2)*(x^(1/4)*d/dx)^n when n is odd, and of 4^(n/2)*(x^(3/4)*d/dx)^n when n is even.

Original entry on oeis.org

1, 1, 4, 5, 4, 5, 40, 16, 45, 72, 16, 45, 540, 432, 64, 585, 1404, 624, 64, 585, 9360, 11232, 3328, 256, 9945, 31824, 21216, 4352, 256, 9945, 198900, 318240, 141440, 21760, 1024, 208845, 835380, 742560, 228480, 26880, 1024, 208845, 5012280, 10024560, 5940480, 1370880, 129024, 4096
Offset: 0

Views

Author

Udita Katugampola, Mar 20 2013

Keywords

Examples

			Triangle begins:
1;
1, 4;
5, 4;
5, 40, 16;
45, 72, 16;
45, 540, 432, 64;
585, 1404, 624, 64;
585, 9360, 11232, 3328, 256;
9945, 31824, 21216, 4352, 256;
9945, 198900, 318240, 141440, 21760, 1024;
208845, 835380, 742560, 228480, 26880, 1024;
208845, 5012280, 10024560, 5940480, 1370880, 129024, 4096;
		

Crossrefs

Programs

  • Maple
    a[0]:= f(x):
    for i from 1 to 13 do
    a[i] := simplify(4^((i+1)mod 2)*x^((2((i+1)mod 2)+1)/4)*(diff(a[i-1],x$1 )));
    end do;
  • Mathematica
    nmax = 12;
    b[0] = Exp[x]; For[ i = 1 , i <= nmax , i++, b[i] = 4^Mod[i + 1, 2]*x^((2 Mod[i + 1, 2] + 1)/4)*D[b[i - 1], x]] // Simplify;
    row[1] = {1}; row[n_] := List @@ Expand[b[n]/f[x]] /. x -> 1;
    Table[row[n], {n, 1, nmax}] // Flatten (* Jean-François Alcover, Feb 22 2019, from Maple *)

Extensions

Missing terms inserted by Jean-François Alcover, Feb 22 2019

A223171 Triangle S(n,k) by rows: coefficients of 5^((n-1)/2)*(x^(1/5)*d/dx)^n when n is odd, and of 5^(n/2)*(x^(4/5)*d/dx)^n when n is even.

Original entry on oeis.org

1, 1, 5, 6, 5, 6, 60, 25, 66, 110, 25, 66, 990, 825, 125, 1056, 2640, 1200, 125, 1056, 21120, 26400, 8000, 625, 22176, 73920, 50400, 10500, 625, 22176, 554400, 924000, 420000, 65625, 3125, 576576, 2402400, 2184000, 682500, 81250, 3125, 576576, 17297280
Offset: 0

Views

Author

Udita Katugampola, Mar 20 2013

Keywords

Examples

			Triangle begins:
1;
1, 5;
6, 5;
6, 60, 25;
66, 110, 25;
66, 990, 825, 125;
1056, 2640, 1200, 125;
1056, 21120, 26400, 8000, 625;
22176, 73920, 50400, 10500, 625;
22176, 554400, 924000, 420000, 65625, 3125;
576576, 2402400, 2184000, 682500, 81250, 3125;
576576, 17297280, 36036000, 21840000, 5118750, 487500, 15625;
17873856, 89369280, 101556000, 42315000, 7556250, 581250, 15625;
		

Crossrefs

Programs

  • Maple
    a[0]:= f(x):
    for i from 1 to 13 do
    a[i] := simplify(5^((i+1)mod 2)*x^((3((i+1)mod 2)+1)/5)*(diff(a[i-1],x$1 )));
    end do;

A223512 Triangle T(n,k) represents the coefficients of (x^10*d/dx)^n, where n=1,2,3,...;generalization of Stirling numbers of second kind A008277, Lah-numbers A008297.

Original entry on oeis.org

1, 10, 1, 190, 30, 1, 5320, 1060, 60, 1, 196840, 45600, 3400, 100, 1, 9054640, 2340040, 208800, 8300, 150, 1, 498005200, 140096880, 14241640, 690200, 17150, 210, 1, 31872332800, 9604302400, 1080045120, 60485040, 1856400, 31640, 280, 1, 2326680294400
Offset: 1

Views

Author

Udita Katugampola, Mar 23 2013

Keywords

Examples

			1;
10,1;
190,30,1;
5320,1060,60,1;
196840,45600,3400,100,1;
9054640,2340040,208800,8300,150,1;
498005200,140096880,14241640,690200,17150,210,1;
31872332800,9604302400,1080045120,60485040,1856400,31640,280,1,2326680294400
		

Crossrefs

Programs

  • Maple
    b[0]:=g(x):
    for j from 1 to 10 do
    b[j]:=simplify(x^10*diff(b[j-1],x$1);
    end do;

A223513 Triangle T(n,k) represents the coefficients of (x^11*d/dx)^n, where n=1,2,3,...

Original entry on oeis.org

1, 11, 1, 231, 33, 1, 7161, 1287, 66, 1, 293601, 61215, 4125, 110, 1, 14973651, 3476781, 279840, 10065, 165, 1, 913392711, 230534073, 21106701, 924000, 20790, 231, 1, 64850882481, 17511845967, 1771323246, 89482701, 2483250, 38346, 308, 1
Offset: 1

Views

Author

Udita Katugampola, Mar 23 2013

Keywords

Comments

Generalization of Stirling numbers of second kind A008277, Lah-numbers A008297.

Examples

			1;
11,1;
231,33,1;
7161,1287,66,1;
293601,61215,4125,110,1;
14973651,3476781,279840,10065,165,1;
913392711,230534073,21106701,924000,20790,23,1;
64850882481,17511845967,1771323246,89482701,2483250,38346,308,1;
		

Crossrefs

Programs

  • Maple
    b[0]:=f(x):
    for j from 1 to 10 do
    b[j]:=simplify(x^11*diff(b[j-1],x$1);
    end do;
Showing 1-10 of 25 results. Next