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 A360851 #9 Feb 16 2025 08:34:04 %S A360851 0,1,1,3,8,3,6,27,27,6,10,64,126,64,10,15,125,426,426,125,15,21,216, %T A360851 1125,2208,1125,216,21,28,343,2493,8830,8830,2493,343,28,36,512,4872, %U A360851 27456,55700,27456,4872,512,36,45,729,8676,70434,265635,265635,70434,8676,729,45 %N A360851 Array read by antidiagonals: T(m,n) is the number of induced paths in the rook graph K_m X K_n. %C A360851 Paths of length zero are not counted here. %H A360851 Andrew Howroyd, <a href="/A360851/b360851.txt">Table of n, a(n) for n = 1..1275</a> %H A360851 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/RookGraph.html">Rook Graph</a>. %H A360851 Wikipedia, <a href="https://en.wikipedia.org/wiki/Induced_path">Induced path</a>. %F A360851 T(m,n) = A360850(m,n) - A003991(m,n). %F A360851 T(m,n) = -m*n + Sum_{j=1..min(m,n)} j!^2*binomial(m,j)*binomial(n,j)*(1 + (m+n)/2 - j). %F A360851 T(m,n) = T(n,m). %e A360851 Array begins: %e A360851 =================================================== %e A360851 m\n| 1 2 3 4 5 6 7 ... %e A360851 ---+----------------------------------------------- %e A360851 1 | 0 1 3 6 10 15 21 ... %e A360851 2 | 1 8 27 64 125 216 343 ... %e A360851 3 | 3 27 126 426 1125 2493 4872 ... %e A360851 4 | 6 64 426 2208 8830 27456 70434 ... %e A360851 5 | 10 125 1125 8830 55700 265635 961975 ... %e A360851 6 | 15 216 2493 27456 265635 2006280 11158161 ... %e A360851 7 | 21 343 4872 70434 961975 11158161 98309778 ... %e A360851 ... %o A360851 (PARI) T(m,n) = sum(j=1, min(m,n), j!^2*binomial(m,j)*binomial(n,j)*(1 + (m+n)/2 - j)) - m*n %Y A360851 Main diagonal is A360852. %Y A360851 Rows 1..2 are A000217(n-1), A000578. %Y A360851 Cf. A003991, A360199, A360850. %K A360851 nonn,tabl %O A360851 1,4 %A A360851 _Andrew Howroyd_, Feb 24 2023