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!)
A070050 Number of Bottleneck-Monge matrices with 2 rows. In the formula below, P = 2. 8
4, 12, 33, 87, 223, 559, 1375, 3327, 7935, 18687, 43519, 100351, 229375, 520191, 1171455, 2621439, 5832703, 12910591, 28442623, 62390271, 136314879, 296747007, 643825663, 1392508927, 3003121663, 6459228159, 13857980415, 29662117887, 63350767615 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A Bottleneck-Monge matrix is a {0,1} matrix A in which, for every i < j and k < l, max(A[i,l], A[j,k]) <= max(A[i,k], A[j,l]).
LINKS
FORMULA
a(P, N) = 1 + Sum_{n=1..N, p=1..P} (C(N, n) * C(P, p) * K(p, n)),
where:
C(i, j) = binomial(i,j),
K(p, n) = Sum_{i=1..n} (T(p, n, i)),
T(1, n, 1) = 1,
T(1, n, i) = 0, for i > 1,
T(p, n, i) = Sum_{j=i..n, k=1..i} T(p-1, j, k).
a(n) = (n^2 + 3*n + 16)*2^(n - 3) - 1. - Vaclav Kotesovec, Aug 15 2013
From Colin Barker, Sep 10 2017: (Start)
G.f.: x*(4 - 16*x + 21*x^2 - 8*x^3) / ((1 - x)*(1 - 2*x)^3).
a(n) = 7*a(n-1) - 18*a(n-2) + 20*a(n-3) - 8*a(n-4) for n>4.
(End)
MAPLE
A:=proc(P, N)return 1+add(add(binomial(N, n)*binomial(P, p)*K(p, n), p=1..P), n=1..N):end:
K:=proc(p, n)global k:if(not type(k[p, n], integer))then k[p, n]:=add(T(p, n, i), i=1..n):fi:return k[p, n]:end:
T:=proc(p, n, i)global t:if(not type(t[p, n, i], integer))then if(p=1 and i=1)then t[p, n, i]:=1:elif(p=1)then t[p, n, i]:=0:else t[p, n, i]:=add(add(T(p-1, j, k), k=1..i), j=i..n):fi:fi:return t[p, n, i]:end:
seq(A(2, n), n=1..20); # Nathaniel Johnston, Apr 13 2011
MATHEMATICA
Table[(n^2 + 3*n + 16)*2^(n-3) - 1, {n, 1, 30}] (* Vaclav Kotesovec, Aug 15 2013 *)
PROG
(PARI) Vec(x*(4 - 16*x + 21*x^2 - 8*x^3) / ((1 - x)*(1 - 2*x)^3) + O(x^40)) \\ Colin Barker, Sep 10 2017
CROSSREFS
Cf. A070051 (P=3), A070052 (P=4), A070053 (P=5), A070054 (P=6), A070055 (P=7), A070054 (P=8), A070057 (P=9).
Sequence in context: A305778 A343561 A104747 * A186025 A027941 A293064
KEYWORD
nonn,easy
AUTHOR
Pascal Prea (pascal.preq(AT)lim.univ-mrs.fr), Apr 18 2002
EXTENSIONS
Edited by N. J. A. Sloane, Jan 25 2011
a(10)-a(29) and corrected recurrence from Nathaniel Johnston, Apr 13 2011
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 23 14:15 EDT 2024. Contains 371914 sequences. (Running on oeis4.)