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 A290133 #25 May 06 2018 11:59:43 %S A290133 1,1,2,5,8,13,21,31,45,65,92,127,175,237,318,425,561,735,959,1241, %T A290133 1597,2047,2607,3305,4174,5247,6569,8197,10189,12621,15588,19189, %U A290133 23551,28829,35189,42841,52033,63039,76197,91903,110603,132831,159215,190463,227416 %N A290133 Number of unique X-rays of n X n binary matrices with exactly n ones. %C A290133 The X-ray of a matrix is defined as the sequence of antidiagonal sums. %C A290133 A unique X-ray allows reconstruction of the binary matrix. %H A290133 Alois P. Heinz, <a href="/A290133/b290133.txt">Table of n, a(n) for n = 0..10000</a> %H A290133 C. Bebeacua, T. Mansour, A. Postnikov and S. Severini, <a href="https://arxiv.org/abs/math/0506334">On the X-rays of permutations</a>, arXiv:math/0506334 [math.CO], 2005. %H A290133 <a href="/index/Mat#binmat">Index entries for sequences related to binary matrices</a> %F A290133 a(n) ~ exp(Pi*sqrt(2*n/3)) / (2^(9/4) * 3^(1/4) * n^(3/4)). - _Vaclav Kotesovec_, May 06 2018 %e A290133 a(3) = 5: 00021, 00300, 02001, 10020, 12000. %e A290133 a(4) = 8: 0000301, 0004000, 0030001, 0200020, 1000021, 1000300, 1030000, 1200001. %p A290133 b:= proc(n, i) option remember; (m-> `if`(n>m, 0, %p A290133 `if`(n=m or n=0, 1, add(b(n-i*j, min(n-i*j, i-1))* %p A290133 `if`(j=1, 2, 1), j=0..min(2, n/i)))))(i*(i+1)) %p A290133 end: %p A290133 a:= n-> `if`(n=0, 1, 1+b(n, n-1)) : %p A290133 seq(a(n), n=0..60); %t A290133 b[n_, i_] := b[n, i] = Function [m, If[n > m, 0, If[n == m || n == 0, 1, Sum[b[n - i*j, Min[n - i*j, i - 1]]*If[j == 1, 2, 1], {j, 0, Min[2, n/i]} ]]]][i*(i + 1)]; %t A290133 a[n_] := If[n == 0, 1, 1 + b[n, n - 1]] ; %t A290133 Table[a[n], {n, 0, 60}] (* _Jean-François Alcover_, Nov 07 2017, after _Alois P. Heinz_ *) %Y A290133 Cf. A290052, A290134. %K A290133 nonn %O A290133 0,3 %A A290133 _Alois P. Heinz_, Jul 20 2017