OFFSET
3,2
COMMENTS
For a general discussion, please see A213343.
This a(n) is for triple-quantum transitions (q = 3).
It lists the flattened triangle T(3;N,k) with rows N = 3,5,... and columns k = 0..floor((N-3)/2).
REFERENCES
See A213343
LINKS
Stanislav Sykora, Table of n, a(n) for n = 3..2452
Stanislav Sykora, T(3;N,k) with rows N=3,..,100 and columns k=0,..,floor((N-3)/2)
Stanislav Sýkora, Magnetic Resonance on OEIS, Stan's NMR Blog (Dec 31, 2014), Retrieved Nov 12, 2019.
FORMULA
Set q = 3 in: T(q;N,k) = 2^(N-q-2*k)*binomial(N,k)*binomial(N-k,q+k).
EXAMPLE
Some of the 40 triple-quantum transitions for N = 5 and combination index 0: (00000,01011),(10010,11111),...
Starting rows of the triangle T(3;N,k):
N | k = 0, 1, ..., floor((N-3)/2)
3 | 1
4 | 8
5 | 40 5
6 | 160 60
7 | 560 420 21
MATHEMATICA
With[{q = 3}, Table[2^(n - q - 2 k)*Binomial[n, k] Binomial[n - k, q + k], {n, 13}, {k, 0, Floor[(n - q)/2]}]] // Flatten (* Michael De Vlieger, Nov 18 2019 *)
PROG
(PARI) See A213343; set thisq = 3.
CROSSREFS
KEYWORD
tabf,nonn
AUTHOR
Stanislav Sykora, Jun 12 2012
STATUS
approved