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!)
A176561 A symmetrical triangle recursion:q=6;t(n,m,0)=Binomial[n,m];t(n,m,1)=Narayana(n,m);t(n,m,2)=Eulerian(n+1,m);t(n,m,q)=t(n,m,g-2)+t(n,m,q-3) 0
1, 1, 1, 1, 7, 1, 1, 18, 18, 1, 1, 38, 90, 38, 1, 1, 75, 360, 360, 75, 1, 1, 145, 1309, 2609, 1309, 145, 1, 1, 280, 4508, 16142, 16142, 4508, 280, 1, 1, 544, 14970, 89464, 158022, 89464, 14970, 544, 1, 1, 1065, 48414, 457794, 1315770, 1315770, 457794, 48414 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are:
{1, 2, 9, 38, 168, 872, 5519, 41862, 367980, 3646088, 39976588,...}.
LINKS
FORMULA
q=6;
t(n,m,0)=Binomial[n,m];
t(n,m,1)=Narayana(n,m);
t(n,m,2)=Eulerian(n+1,m);
t(n,m,q)=t(n,m,g-2)+t(n,m,q-3)
EXAMPLE
{1},
{1, 1},
{1, 7, 1},
{1, 18, 18, 1},
{1, 38, 90, 38, 1},
{1, 75, 360, 360, 75, 1},
{1, 145, 1309, 2609, 1309, 145, 1},
{1, 280, 4508, 16142, 16142, 4508, 280, 1},
{1, 544, 14970, 89464, 158022, 89464, 14970, 544, 1},
{1, 1065, 48414, 457794, 1315770, 1315770, 457794, 48414, 1065, 1},
{1, 2099, 153505, 2208556, 9752182, 15743902, 9752182, 2208556, 153505, 2099, 1}
MATHEMATICA
<< DiscreteMath`Combinatorica`
t[n_, m_, 0] := Binomial[n, m];
t[n_, m_, 1] := Binomial[n, m]*Binomial[n + 1, m]/(m + 1);
t[n_, m_, 2] := Eulerian[1 + n, m];
t[n_, m_, q_] := t[n, m, q] = t[n, m, q - 2] + t[n, m, q - 3] - 1;
Table[Flatten[Table[Table[t[n, m, q], {m, 0, n}], {n, 0, 10}]], {q, 0, 10}]
CROSSREFS
Sequence in context: A082110 A275526 A141597 * A176284 A154233 A174033
KEYWORD
nonn,tabl,uned
AUTHOR
Roger L. Bagula, Apr 20 2010
STATUS
approved

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 16:21 EDT 2024. Contains 371794 sequences. (Running on oeis4.)