login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A039683 Signed double Pochhammer triangle: expansion of x(x-2)(x-4)..(x-2n+2). 21

%I #74 Dec 21 2020 17:29:10

%S 1,-2,1,8,-6,1,-48,44,-12,1,384,-400,140,-20,1,-3840,4384,-1800,340,

%T -30,1,46080,-56448,25984,-5880,700,-42,1,-645120,836352,-420224,

%U 108304,-15680,1288,-56,1,10321920,-14026752,7559936,-2153088,359184,-36288,2184,-72,1

%N Signed double Pochhammer triangle: expansion of x(x-2)(x-4)..(x-2n+2).

%C T(n,m) = R_n^m(a=0,b=2) in the notation of the given reference.

%C Exponential Riordan array [1/(1+2x),log(1+2x)/2]. The unsigned triangle is [1/(1-2x),log(1/sqrt(1-2x))]. - Paul Barry_, Apr 29 2009

%C The n-th row is related to the expansion of z^(-2n)*(z^3 d/dz)^n in polynomials of the Euler operator D=(z d/dz). E.g., z^(-6)(z^3 d/dz)^3 = D^3 + 6 D^2 + 8 D. See Copeland link for relations to Bell / Exponential / Touchard polynomial operators. - _Tom Copeland_, Nov 14 2013

%C A refinement of this array is given by A231846. - _Tom Copeland_, Nov 15 2013

%C Also the Bell transform of the double factorial of even numbers A000165 except that the values are unsigned and in addition a first column (1,0,0 ...) is added on the left side of the triangle. For the Bell transform of the double factorial of odd numbers A001147 see A132062. For the definition of the Bell transform see A264428. - _Peter Luschny_, Dec 20 2015

%C The signed triangle is also the inverse Bell transform of A000079 (see Luschny link). - _John Keith_, Nov 24 2020

%H Richell O. Celeste, Roberto B. Corcino, Ken Joffaniel M. Gonzales. <a href="https://cs.uwaterloo.ca/journals/JIS/VOL20/Celeste/celeste3.html"> Two Approaches to Normal Order Coefficients</a>. Journal of Integer Sequences, Vol. 20 (2017), Article 17.3.5.

%H Tom Copeland, <a href="https://tcjpn.files.wordpress.com/2011/06/addendum-to-mathemagical-forests-v2.pdf">Addendum to Mathemagical Forests</a>.

%H P. Feijão, F. V. Martinez, A. Thévenin, <a href="http://www.biomedcentral.com/1471-2105/16/S19/S1/">On the distribution of cycles and paths in multichromosomal breakpoint graphs and the expected value of rearrangement distance</a>, BMC Bioinformatics 16:Suppl19 (2015), S1. doi:<a href="http://dx.doi.org/10.1186/1471-2105-16-S19-S1">10.1186/1471-2105-16-S19-S1</a>

%H Lisa Glaser, <a href="http://dx.doi.org/10.1088/1742-6596/306/1/012041">Causal set actions in various dimensions</a>, J. Phys.: Conf. Ser. 306 (2011), 012041.

%H Wolfdieter Lang, <a href="/A039683/a039683.txt">First 9 rows and comment</a>.

%H Peter Luschny, <a href="https://oeis.org/wiki/User:Peter_Luschny/BellTransform">The Bell transform</a>

%H D. S. Mitrinovic, M. S. Mitrinovic, <a href="http://pefmath2.etf.rs/files/47/77.pdf">Tableaux d'une classe de nombres relies aux nombres de Stirling</a>, Univ. Beograd. Pubi. Elektrotehn. Fak. Ser. Mat. Fiz. 77 (1962).

%F T(n, m) = T(n-1, m-1) - 2*(n-1)*T(n-1, m), n >= m >= 1; T(n, m) := 0, n<m; T(n, 0) := 0, T(1, 1)=1.

%F E.g.f. for m-th column of signed triangle: (((log(1+2*x))/2)^m)/m!.

%F E.g.f.: (1+2*x)^(y/2). O.g.f. for n-th row of signed triangle: Sum_{m=0..n} Stirling1(n, m)*2^(n-m)*x^m. - _Vladeta Jovovic_, Feb 11 2003

%F T(n, m) = S1(n, m)*2^(n-m), with S1(n, m) := A008275(n, m) (signed Stirling1 triangle).

%F The production matrix below is A038207 with the first row removed. With the initial index n = 0, the associated differential raising operator is R = e^(2D)*x = (2+x)*e^(2D) with D = d/dx, i.e., R p_n(x) = p_(n+1)(x) where p_n(x) is the n-th unsigned row polynomial and p_0(x) = 1, so p_(n+1)(x) = (2+x) * p_n(2+x). - _Tom Copeland_, Oct 11 2016

%e Triangle starts:

%e {1},

%e {2,1},

%e {8,6,1},

%e {48,44,12,1},

%e ...

%e From _Paul Barry_, Apr 29 2009: (Start)

%e The unsigned triangle [1/(1-2x),log(1/sqrt(1-2x))] has production matrix:

%e 2, 1,

%e 4, 4, 1,

%e 8, 12, 6, 1,

%e 16, 32, 24, 8, 1,

%e 32, 80, 80, 40, 10, 1,

%e 64, 192, 240, 160, 60, 12, 1

%e which is A007318^{2} beheaded. (End)

%t Table[ Rest@ CoefficientList[ Product[ z-k, {k, 0, 2p-2, 2} ], z ], {p, 6} ]

%o (Sage) # uses[bell_transform from A264428]

%o # Unsigned values and an additional first column (1,0,0,...).

%o def A039683_unsigned_row(n):

%o a = sloane.A000165

%o dblfact = a.list(n)

%o return bell_transform(n, dblfact)

%o [A039683_unsigned_row(n) for n in (0..9)] # _Peter Luschny_, Dec 20 2015

%Y First column (unsigned triangle) is (2(n-1))!! = 1, 2, 8, 48, 384...= A000165(n-1) and the row sums (unsigned) are (2n-1)!! = 1, 3, 15, 105, 945... = A001147(n-1).

%Y Cf. A051141, A051142.

%Y Cf. A000165, A132062, A264428.

%Y Cf. A038207.

%K sign,tabl

%O 1,2

%A _Wouter Meeussen_

%E Additional comments from _Wolfdieter Lang_

%E Title revised by _Tom Copeland_, Dec 21 2013

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)