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!)
A156586 A new q-combination type general triangle sequence based on Stirling first polynomials: here q=4: m=3: t(n,k)=If[m == 0, n!, Product[Sum[(-1)^(i + k)*StirlingS1[k - 1, i]*(m + 1)^i, {i, 0, k - 1}], {k, 1, n}]]; b(n,k,m)=If[n == 0, 1, t[n, m]/(t[k, m]*t[n - k, m])]. 0

%I #2 Mar 30 2012 17:34:33

%S 1,1,1,1,4,1,1,20,20,1,1,120,600,120,1,1,840,25200,25200,840,1,1,6720,

%T 1411200,8467200,1411200,6720,1,1,60480,101606400,4267468800,

%U 4267468800,101606400,60480,1,1,604800,9144576000,3072577536000,21508042752000

%N A new q-combination type general triangle sequence based on Stirling first polynomials: here q=4: m=3: t(n,k)=If[m == 0, n!, Product[Sum[(-1)^(i + k)*StirlingS1[k - 1, i]*(m + 1)^i, {i, 0, k - 1}], {k, 1, n}]]; b(n,k,m)=If[n == 0, 1, t[n, m]/(t[k, m]*t[n - k, m])].

%C Row sums are:

%C {1, 2, 6, 42, 842, 52082, 11303042, 8738271362, 27671488185602,

%C 346773112532985602, 20244862147392528307202,...}.

%C The q=2 sequence is A009963.

%F q=4: m=3:

%F t(n,k)=If[m == 0, n!, Product[Sum[(-1)^(i + k)*StirlingS1[k - 1, i]*(m + 1)^i, {i, 0, k - 1}], {k, 1, n}]];

%F b(n,k,m)=If[n == 0, 1, t[n, m]/(t[k, m]*t[n - k, m])].

%e {1},

%e {1, 1},

%e {1, 4, 1},

%e {1, 20, 20, 1},

%e {1, 120, 600, 120, 1},

%e {1, 840, 25200, 25200, 840, 1},

%e {1, 6720, 1411200, 8467200, 1411200, 6720, 1},

%e {1, 60480, 101606400, 4267468800, 4267468800, 101606400, 60480, 1},

%e {1, 604800, 9144576000, 3072577536000, 21508042752000, 3072577536000, 9144576000, 604800, 1},

%e {1, 6652800, 1005903360000, 3041851760640000, 170343698595840000, 170343698595840000, 3041851760640000, 1005903360000, 6652800, 1},

%e {1, 79833600, 132779243520000, 4015244324044800000, 2023683139318579200000, 16189465114548633600000, 2023683139318579200000, 4015244324044800000, 132779243520000, 79833600, 1}

%t Clear[t, n, m, i, k, a, b];

%t t[n_, m_] = If[m == 0, n!, Product[Sum[(-1)^(i + k)*StirlingS1[k - 1, i]*(m + 1)^i, {i, 0, k - 1}], {k, 1, n}]];

%t b[n_, k_, m_] = If[n == 0, 1, t[n, m]/(t[k, m]*t[n - k, m])];

%t Table[Flatten[Table[Table[b[n, k, m], {k, 0, n}], {n, 0, 10}]], {m, 0, 15}]

%Y A009963

%K nonn,tabl,uned

%O 0,5

%A _Roger L. Bagula_, Feb 10 2009

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)