cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A343245 Hyperplane-counting upper bound on the number of sorted orders of X+Y for two lists X and Y of length n.

Original entry on oeis.org

1, 1, 16, 190051, 48563893286, 62416511444764621, 278991478506233367981237, 3489283612532675861618129664796, 104930321415012656258005668476458298401, 6780157485532072442175423032103032983044918034
Offset: 0

Views

Author

David Eppstein, Apr 08 2021

Keywords

Comments

Grows asymptotically as O(n^(8n)) (Fredman 1976).

Examples

			For n=2, 2*binomial(n,2)^2 + 2*binomial(n,2) = 4 and binomial(4,0) + ... + binomial(4,2*n) = 16, so a(2)=16.
		

Formula

a(n) = Sum_{i=0..2*n} binomial(2*binomial(n,2)^2 + 2*binomial(n,2), i).