A336283 Row sums of A192933.
1, 3, 20, 152, 1264, 11168, 102976, 979840, 9550592, 94876160, 957101056, 9778354176, 100970557440, 1052097552384, 11048512143360, 116814955118592, 1242454765535232, 13284730164346880, 142713773337346048, 1539605733158944768
Offset: 1
Keywords
Links
- Elina Robeva and Melinda Sun, Bimonotone Subdivisions of Point Configurations in the Plane, arXiv:2007.00877 [math.CO], 2020.
Programs
-
PARI
lista(nn) = {my(T=matrix(nn, nn)); T[1, 1] = 1; for (n=2, nn, for (k=1, n, T[n, k] = sum(i=1, n, sum(j=1, k, if ((i!=n) || (j!=k), T[i, j]))); ); ); vector(nn, k, vecsum(vector(k, i, T[k, i]))); } \\ Michel Marcus, Jul 16 2020
Comments