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.
%I A059214 #28 Dec 29 2023 13:54:28 %S A059214 2,2,4,2,4,6,2,4,8,8,2,4,8,14,10,2,4,8,16,22,12,2,4,8,16,30,32,14,2,4, %T A059214 8,16,32,52,44,16,2,4,8,16,32,62,84,58,18,2,4,8,16,32,64,114,128,74, %U A059214 20,2,4,8,16,32,64,126,198,186,92,22,2,4,8,16,32,64 %N A059214 Square array T(k,n) = C(n-1,k) + Sum_{i=0..k} C(n,i) read by antidiagonals (k >= 1, n >= 1). %C A059214 For k > 1, gives maximal number of regions into which k-space can be divided by n hyperspheres. %C A059214 The maximum number of subsets of a set of n points in k-space that can be formed by intersecting it with a hyperplane. - _Günter Rote_, Dec 18 2018 %D A059214 L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 73, Problem 4. %H A059214 Paolo Xausa, <a href="/A059214/b059214.txt">Table of n, a(n) for n = 1..11325</a> (antidiagonals 1..150 of the array, flattened). %H A059214 E. F. Harding, <a href="https://doi.org/10.1017/S0013091500011925">The number of partitions of a set of n points in k dimensions induced by hyperplanes</a>, Proc. Edinburgh Math. Soc., 15 (1967), 285-289. %F A059214 T(k,n) = C(n-1, k) + Sum_{i=0..k} C(n, i). %e A059214 Array begins %e A059214 2 4 6 8 10 12 ... %e A059214 2 4 8 14 22 32 ... %e A059214 2 4 8 16 30 52 ... %t A059214 A059214[k_,n_]:=Binomial[n-1,k]+Sum[Binomial[n,i],{i,0,k}]; %t A059214 Table[A059214[k-n+1,n],{k,10},{n,k}] (* _Paolo Xausa_, Dec 29 2023 *) %Y A059214 Cf. A014206 (dim 2), A046127 (dim 3), A059173 (dim 4), A059174 (dim 5). %Y A059214 Equals twice A216274. %Y A059214 Apart from left border, same as A059250. A178522 is probably the best version. %K A059214 nonn,tabl %O A059214 1,1 %A A059214 _N. J. A. Sloane_, Feb 15 2001