OFFSET
4,2
COMMENTS
An irreducible meander is a type of singular meander that has no nontrivial submeanders.
LINKS
Yury Belousov, Table of n, a(n) for n = 4..139 (rows n = 4..19, flattened)
Yury Belousov, Singular meanders, Zap. Nauchn. Sem. POMI, 549 (2025), 49-64.
Yury Belousov, Prime Factorization of Meanders, arXiv:2112.10289 [math.CO], 2025.
Yury Belousov, C++ code for generating the sequence, GitHub.
FORMULA
T(n, k) = 0 for k < 3 and for k = n;
T(2*m, 3) = 0 for m >= 2;
T(2*m+1, 3) = phi(m+3) - 2 for m >= 1, where phi(x) is Euler's totient function;
T(2*m+1, 4) = (m-1)*(phi(m+3) - 2) for m >= 2;
Sum_{k >= 0} T(k+1, k)*t^k = (1/8)*(-1 + ((1 - 3*t)/(1 + t))^(1/2))^4;
Sum_{k >= 0} T(k+2, k)*t^k = -(2*t - 1 + ((1-3*t)/(1+t))^(1/2))/((1-3*t)*(1+t)^5)^(1/2).
EXAMPLE
The triangle T(n,k), n >= 4, 3 <= k < n, begins:
0;
2, 2;
0, 0, 0;
0, 0, 12, 8;
0, 10, 16, 14, 8;
4, 12, 36, 48, 72, 36;
...
CROSSREFS
KEYWORD
AUTHOR
Yury Belousov, Mar 24 2026
STATUS
approved
