OFFSET
0,4
COMMENTS
Nonisomorphic closed meanders, where two closed meanders are considered equivalent if one can be obtained from the other by reflections in an East-West mirror (a group of order 2).
LINKS
Jean-François Alcover, Table of n, a(n) for n = 0..28
FORMULA
a(n) = A005315(n) / 2 for n >= 2. - Andrew Howroyd, Nov 23 2015
EXAMPLE
A meander can be specified by marking 2n equally spaced points along a line and recording the order in which the meander visits the points.
For n = 2, 4, 6, 8 the solutions are as follows:
n=2: 1 2
n=4: 1 2 3 4
n=6: 1 2 3 4 5 6, 1 2 3 6 5 4, 1 2 5 4 3 6, 1 4 3 2 5 6
n=8: 1 2 3 4 5 6 7 8, 1 2 3 4 5 8 7 6, 1 2 3 4 7 6 5 8, 1 2 7 6 3 4 5 8, 1 2 3 6 7 8 5 4, 1 2 3 6 5 4 7 8,
n=8 (cont.): 1 2 5 4 3 6 7 8, 1 2 3 8 7 6 5 4, 1 2 5 4 3 8 7 6, 1 2 7 6 5 4 3 8, 1 2 3 8 5 6 7 4, 1 2 3 8 7 4 5 6, 1 2 5 6 7 4 3 8,
n=8 (cont.): 1 2 7 4 5 6 3 8, 1 4 3 2 5 6 7 8, 1 4 5 6 3 2 7 8, 1 4 3 2 5 8 7 6, 1 4 3 2 7 6 5 8, 1 6 5 4 3 2 7 8, 1 6 5 2 3 4 7 8, 1 6 3 4 5 2 7 8,
MATHEMATICA
a[n_] := If[n < 3, 1, A005315[[n+1]]/2];
Table[a[n], {n, 0, 28}] (* Jean-François Alcover, Aug 10 2022, after Andrew Howroyd *)
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
N. J. A. Sloane and Jon Wild, Dec 07 2002
EXTENSIONS
a(10)-a(20) added by Andrew Howroyd, Nov 23 2015
a(21)-a(28) computed from A005315 added by Jean-François Alcover, Aug 10 2022
STATUS
approved