login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157012 Riordan's general Eulerian recursion:m=2: ( A008292 is m=1); e(n,k,m)= (k + m)e(n - 1, k, m) + (n - k + 1 - m)e(n - 1, k - 1, m) 0
1, 1, 0, 1, 1, 0, 1, 5, 1, 0, 1, 18, 14, 1, 0, 1, 58, 110, 33, 1, 0, 1, 179, 672, 495, 72, 1, 0, 1, 543, 3583, 5163, 1917, 151, 1, 0, 1, 1636, 17590, 43730, 32154, 6808, 310, 1, 0, 1, 4916, 81812, 324190, 411574, 176272, 22904, 629, 1, 0 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,8

COMMENTS

Row sums are:

{1, 1, 2, 7, 34, 203, 1420, 11359, 102230, 1022299,...}.

This recursion set doesn't seem to produce the Eulerian 2nd A008517.

REFERENCES

J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, pp. 214-215

FORMULA

m=2;

e(n,k,m)= (k + m)e(n - 1, k, m) + (n - k + 1 - m)e(n - 1, k - 1, m).

EXAMPLE

{1},

{1, 0},

{1, 1, 0},

{1, 5, 1, 0},

{1, 18, 14, 1, 0},

{1, 58, 110, 33, 1, 0},

{1, 179, 672, 495, 72, 1, 0},

{1, 543, 3583, 5163, 1917, 151, 1, 0},

{1, 1636, 17590, 43730, 32154, 6808, 310, 1, 0},

{1, 4916, 81812, 324190, 411574, 176272, 22904, 629, 1, 0}

MATHEMATICA

e[n_, 0, m_] := 1;

e[n_, k_, m_] := 0 /; k >= n;

e[n_, k_, m_] := (k + m)e[n - 1, k, m] + (n - k + 1 - m)e[n - 1, k - 1, m];

Table[Flatten[Table[Table[e[ n, k, m], {k, 0, n - 1}], {n, 1, 10}]], {m, 0, 10}]

CROSSREFS

A008517, A008292

Sequence in context: A007912 A019755 A085475 * A102365 A102259 A021200

Adjacent sequences:  A157009 A157010 A157011 * A157013 A157014 A157015

KEYWORD

nonn,tabl,uned

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Feb 21 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 02:50 EST 2012. Contains 205694 sequences.