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!)
A218695 Square array A(h,k) = (2^h-1)*A(h,k-1) + Sum_{i=1..h-1} binomial(h,h-i)*2^i*A(i,k-1), with A(1,k) = A(h,1) = 1; read by antidiagonals. 3
1, 1, 1, 1, 7, 1, 1, 25, 25, 1, 1, 79, 265, 79, 1, 1, 241, 2161, 2161, 241, 1, 1, 727, 16081, 41503, 16081, 727, 1, 1, 2185, 115465, 693601, 693601, 115465, 2185, 1, 1, 6559, 816985, 10924399, 24997921, 10924399, 816985, 6559, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
This symmetric table is defined in the Kreweras papers, used also in A223911. Its upper or lower triangular part equals A183109, which might provide a simpler formula.
Number of h X k binary matrices with no zero rows or columns. - Andrew Howroyd, Mar 29 2023
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (first 50 antidiagonals)
G. Kreweras, Dénombrements systématiques de relations binaires externes, Math. Sci. Humaines 26 (1969) 5-15.
G. Kreweras, Dénombrement des ordres étagés, Discrete Math., 53 (1985), 147-149.
FORMULA
From Andrew Howroyd, Mar 29 2023: (Start)
A(h, k) = Sum_{i=0..h} (-1)^(h-i) * binomial(h, i) * (2^i-1)^k.
A052332(n) = Sum_{i=1..n-1} binomial(n,i)*A(i, n-i) for n > 0. (End)
EXAMPLE
Array A(h,k) begins:
=====================================================
h\k | 1 2 3 4 5 6 ...
----+------------------------------------------------
1 | 1 1 1 1 1 1 ...
2 | 1 7 25 79 241 727 ...
3 | 1 25 265 2161 16081 115465 ...
4 | 1 79 2161 41503 693601 10924399 ...
5 | 1 241 16081 693601 24997921 831719761 ...
6 | 1 727 115465 10924399 831719761 57366997447 ...
...
PROG
(PARI) c(h, k)={(h<2 || k<2) & return(1); sum(i=1, h-1, binomial(h, h-i)*2^i*c(i, k-1))+(2^h-1)*c(h, k-1)}
/* For better performance when h and k are large, insert the following memoization code before "sum(...)": cM=='cM & cM=matrix(h, k); my(s=matsize(cM));
s[1] >= h & s[2] >= k & cM[h, k] & return(cM[h, k]);
s[1]<h & cM=concat(cM~, matrix(s[2], h-s[1]))~;
s[2]<k & cM=concat(cM, matrix(max(h, s[1]), k-s[2])); cM[h, k]= */
(PARI) A(m, n) = sum(k=0, m, (-1)^(m-k) * binomial(m, k) * (2^k-1)^n ) \\ Andrew Howroyd, Mar 29 2023
CROSSREFS
Columns 1..3 are A000012, A058481, A058482.
Main diagonal is A048291.
Cf. A056152 (unlabeled case), A052332, A183109, A223911.
Sequence in context: A056752 A053714 A168290 * A179837 A238743 A168517
KEYWORD
nonn,tabl
AUTHOR
M. F. Hasler, Nov 04 2012
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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)