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.

A223523 Triangle S(n, k) by rows: coefficients of 2^((n-1)/2)*(x^(1/2)*d/dx)^n, where n = 1, 3, 5, ...

This page as a plain text file.
%I A223523 #36 Jan 10 2024 15:58:49
%S A223523 1,3,2,15,20,4,105,210,84,8,945,2520,1512,288,16,10395,34650,27720,
%T A223523 7920,880,32,135135,540540,540540,205920,34320,2496,64,2027025,
%U A223523 9459450,11351340,5405400,1201200,131040,6720,128
%N A223523 Triangle S(n, k) by rows: coefficients of 2^((n-1)/2)*(x^(1/2)*d/dx)^n, where n = 1, 3, 5, ...
%C A223523 Triangle S(n,n-k) by rows: coefficients of 2^n * |L(n,1/2,x)|, with L the generalized Laguerre polynomials.
%H A223523 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.
%H A223523 U. N. Katugampola, <a href="http://arxiv.org/abs/1411.5229">Existence and Uniqueness results for a class of Generalized Fractional Differential Equations</a>, arXiv preprint arXiv:1411.5229, 2014
%F A223523 T(n, k) = 2^n * n!/(n-k)! * C(n+1/2, k), n>=0, k<=n.
%e A223523 Triangle begins:
%e A223523 1;
%e A223523 3, 2;
%e A223523 15, 20, 4;
%e A223523 105, 210, 84, 8;
%e A223523 945, 2520, 1512, 288, 16;
%e A223523 10395, 34650, 27720, 7920, 880, 32;
%e A223523 135135, 540540, 540540, 205920, 34320, 2496, 64;
%e A223523 .
%e A223523 .
%e A223523 Expansion takes the form:
%e A223523 2^0 (x^(1/2)*d/dx)^1 = 1*x^(1/2)*d/dx.
%e A223523 2^1 (x^(1/2)*d/dx)^3 = 3*x^(1/2)*d^2/dx^2 + 2*x^(3/2)*d^3/dx^3.
%e A223523 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.
%p A223523 a[0]:= f(x):
%p A223523 for i from 1 to 20 do
%p A223523 a[i]:= simplify(2^((i+1)mod 2)*x^(1/2)*(diff(a[i-1],x$1)));
%p A223523 end do:
%p A223523 for j from 1 to 10 do
%p A223523 b[j]:=a[2j-1];
%p A223523 end do;
%Y A223523 Cf. A223168-A223172.
%Y A223523 Rows includes odd rows of A223168.
%Y A223523 Rows includes absolute values of A098503 from right to left of the triangular form.
%K A223523 nonn,tabl
%O A223523 1,2
%A A223523 _Udita Katugampola_, Mar 21 2013