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.

A223526 Triangle S(n,k) by rows: coefficients of 3^(n/2)*(x^(2/3)*d/dx)^n when n=0,2,4,6,...

This page as a plain text file.
%I A223526 #25 Mar 15 2015 16:55:29
%S A223526 1,1,3,4,24,9,28,252,189,27,280,3360,3780,1080,81,3640,54600,81900,
%T A223526 35100,5265,243,58240,1048320,1965600,1123200,252720,23328,729,
%U A223526 1106560,23237760,52284960,37346400,11203920,1551312,96957,2187,24344320,584263680,1533692160
%N A223526 Triangle S(n,k) by rows: coefficients of 3^(n/2)*(x^(2/3)*d/dx)^n when n=0,2,4,6,...
%H A223526 U. N. Katugampola, <a href="http://authors.elsevier.com/a/1QhUNLvMg0Zs~">Mellin Transforms of Generalized Fractional Integrals and Derivatives</a>, Appl. Math. Comput. 257(2015) 566-580.
%F A223526 T(n,0) = A007559(n) and T(n,n) = A000244(n) for all n>=0
%e A223526 Triangle begins:
%e A223526 1;
%e A223526 1, 3;
%e A223526 4, 24, 9;
%e A223526 28, 252, 189, 27;
%e A223526 280, 3360, 3780, 1080, 81;
%e A223526 3640, 54600, 81900, 35100, 5265, 243;
%e A223526 58240, 1048320, 1965600, 1123200, 252720, 23328, 729;
%e A223526 1106560, 23237760, 52284960, 37346400, 11203920, 1551312, 96957, 2187;
%e A223526 24344320, 584263680, 1533692160, 1314593280, 492972480, 91010304, 8532216, 384912, 6561;
%p A223526 a[0]:= f(x):
%p A223526 for i from 1 to 20 do
%p A223526 a[i] := simplify(3^((i+1)mod 2)*x^(((i+1)mod 2+1)/3)*(diff(a[i-1],x$1 )));
%p A223526 end do:
%p A223526 for j from 1 to 10 do
%p A223526 b[j]:=a[2j];
%p A223526 end do;
%Y A223526 Even row of A223169.
%Y A223526 Cf. A223168-A223172, A223511-A223532.
%K A223526 nonn,tabl
%O A223526 1,3
%A A223526 _Udita Katugampola_, Mar 18 2013