A254630
Ascending antidiagonal numerators of the table of repeated differences of A164558(n)/A027642(n).
Original entry on oeis.org
1, 1, 3, 1, 2, 13, 0, 1, 5, 3, -1, -1, 2, 29, 119, 0, -1, -1, 1, 31, 5, 1, 1, -1, -8, -1, 43, 253, 0, 1, 1, 4, -4, -1, 41, 7, -1, -1, -1, 4, 8, 4, -1, 29, 239, 0, -1, -1, -8, -4, 4, 8, 1, 31, 9, 5, 5, 7, -4, -116, -32, -116, -4, 7, 71, 665, 0
Offset: 0
Cf.
A027641,
A027642,
A074909,
A085737,
A085738,
A104002,
A157809,
A157920,
A157930,
A157945,
A157946,
A157965,
A164555,
A164558,
A190339,
A158302,
A181131 (numerators and denominators of the main diagonal).
-
nmax = 11; A164558 = Table[BernoulliB[n,2], {n, 0, nmax}]; D164558 = Table[ Differences[A164558, n], {n, 0, nmax}]; Table[ D164558[[n-k+1, k+1]] // Numerator, {n, 0, nmax}, {k, 0, n}] // Flatten (* Jean-François Alcover, Feb 04 2015 *)
A320531
T(n,k) = n*k^(n - 1), k > 0, with T(n,0) = A063524(n), square array read by antidiagonals upwards.
Original entry on oeis.org
0, 1, 0, 0, 1, 0, 0, 2, 1, 0, 0, 3, 4, 1, 0, 0, 4, 12, 6, 1, 0, 0, 5, 32, 27, 8, 1, 0, 0, 6, 80, 108, 48, 10, 1, 0, 0, 7, 192, 405, 256, 75, 12, 1, 0, 0, 8, 448, 1458, 1280, 500, 108, 14, 1, 0, 0, 9, 1024, 5103, 6144, 3125, 864, 147, 16, 1, 0, 0, 10, 2304
Offset: 0
Square array begins:
0, 0, 0, 0, 0, 0, 0, 0, ...
1, 1, 1, 1, 1, 1, 1, 1, ...
0, 2, 4, 6, 8, 10, 12, 14, ... A005843
0, 3, 12, 27, 48, 75, 108, 147, ... A033428
0, 4, 32, 108, 256, 500, 864, 1372, ... A033430
0, 5, 80, 405, 1280, 3125, 6480, 12005, ... A269792
0, 6, 192, 1458, 6144, 18750, 46656, 100842, ...
0, 7, 448, 5103, 28672, 109375, 326592, 823543, ...
...
T(3,2) = 3*2^(3 - 1) = 12. The corresponding binary words are 110101, 110110, 111001, 111010, 011101, 011110, 101101, 101110, 010111, 011011, 100111, 101011.
- Louis H. Kauffman, Formal Knot Theory, Princeton University Press, 1983.
- Louis H. Kauffman, State models and the Jones polynomial, Topology, Vol. 26 (1987), 395-407.
- Franck Ramaharo, A generating polynomial for the pretzel knot, arXiv:1805.10680 [math.CO], 2018.
- Alexander Stoimenow, Everywhere Equivalent 2-Component Links, Symmetry Vol. 7 (2015), 365-375.
- Wikipedia, Pretzel link
-
T[n_, k_] = If [k > 0, n*k^(n - 1), If[k == 0 && n == 1, 1, 0]];
Table[Table[T[n - k, k], {k, 0, n}], {n, 0, 12}]//Flatten
-
T(n, k) := if k > 0 then n*k^(n - 1) else if k = 0 and n = 1 then 1 else 0$
tabl(nn) := for n:0 thru nn do print(makelist(T(n, k), k, 0, nn))$
Showing 1-2 of 2 results.
Comments