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.

A136657 Unsigned member s=2 of a family of generalizations of the (signed) Lah triangle A008297. All numbers divided by 2.

This page as a plain text file.
%I A136657 #12 Aug 28 2019 17:37:29
%S A136657 1,3,2,12,18,4,60,150,72,8,360,1320,1020,240,16,2520,12600,13860,5160,
%T A136657 720,32,20160,131040,191520,99960,21840,2016,64,181440,1481760,
%U A136657 2751840,1882440,571200,81984,5376,128,1814400,18144000,41489280,35622720
%N A136657 Unsigned member s=2 of a family of generalizations of the (signed) Lah triangle A008297. All numbers divided by 2.
%C A136657 In order to obtain the Lah triangle for s=+1 the sign of the s parameter in the Charalambides reference has been switched.
%C A136657 For more information see entry A136656 and the Charalambides reference.
%D A136657 Ch. A. Charalambides, Enumerative Combinatorics, Chapman & Hall/CRC, Boca Raton, Florida, 2002, ch. 8.4 p. 301 ff, with s -> -s. Table 8.3 for s=-2 and multiplied by(-1)^n, divided by 2.
%H A136657 W. Lang, <a href="/A136657/a136657.txt">First ten rows and more</a>.
%F A136657 a(n,k)=sum(((-1)^(k-r))*binomial(k,r)*fallfac(-2*r,n),r=0..k)/(2*k!), n>=k>=1. From the Charalambides reference Theorem 8.15, p. 306 for s=-2, divided by 2.
%e A136657 [1];[3,2];[12,18,4];[60,150,72,8];[360,1320,1020,240,16];...
%t A136657 fallfac[n_, k_] := Pochhammer[n - k + 1, k]; a[n_, k_] := Sum[(-1)^(k - r)*Binomial[k, r]*fallfac[-2*r, n], {r, 0, k}]/(2*k!); Table[(-1)^n*a[n, k], {n, 0, 9}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Jul 09 2013 *)
%K A136657 easy,tabl,nonn
%O A136657 0,2
%A A136657 _Wolfdieter Lang_, Feb 22 2008