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!)
A266464 Number of n X 2 binary arrays with rows and columns lexicographically nondecreasing and column sums nonincreasing. 2
1, 2, 4, 7, 12, 19, 29, 42, 59, 80, 106, 137, 174, 217, 267, 324, 389, 462, 544, 635, 736, 847, 969, 1102, 1247, 1404, 1574, 1757, 1954, 2165, 2391, 2632, 2889, 3162, 3452, 3759, 4084, 4427, 4789, 5170, 5571, 5992, 6434, 6897, 7382, 7889, 8419, 8972, 9549, 10150 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000 (terms n=1..210 from R. H. Hardin)
FORMULA
a(n) = 3*a(n-1) - 2*a(n-2) - 2*a(n-3) + 3*a(n-4) -a(n-5).
From Colin Barker, Mar 21 2018: (Start)
G.f.: (x^3-x+1)/((x+1)*(x-1)^4).
a(n) = (2*n^3 + 3*n^2 + 22*n + 24) / 24 for n even.
a(n) = (2*n^3 + 3*n^2 + 22*n + 21) / 24 for n odd.
(End)
EXAMPLE
Some solutions for n=4:
..0..0....0..0....0..1....0..0....0..1....0..0....1..1....0..1....0..0....0..1
..0..0....0..0....0..1....1..1....1..0....0..0....1..1....1..0....0..0....1..0
..0..1....0..0....1..0....1..1....1..1....1..1....1..1....1..0....0..0....1..0
..1..0....1..1....1..0....1..1....1..1....1..1....1..1....1..1....0..0....1..0
MAPLE
a:= proc(n) option remember;
`if`(n<0, 0, 1+a(n-1)+floor(n^2/4))
end:
seq(a(n), n=0..100); # Alois P. Heinz, Dec 27 2023
CROSSREFS
Column 2 of A266470.
Partial sums of A033638.
Sequence in context: A087149 A090853 A333311 * A103231 A002622 A363276
KEYWORD
nonn,easy
AUTHOR
R. H. Hardin, Dec 29 2015
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Dec 27 2023
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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)