OFFSET
1,7
COMMENTS
For polygons in general see A000939 and A000949, and especially the Golomb-Welch reference. - N. J. A. Sloane, Nov 21 2013
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..200
Stewart Gordon, The five possible stars for n=7 (SVG file)
Wikipedia, Unicursal hexagram
FORMULA
a(n) = (A370068(n) + A283184(n/2-1)/2)/2 for even n >= 4; a(n) = A370068(n)/2 for odd n. - Andrew Howroyd, Feb 24 2024
EXAMPLE
For n=5, only solution is the regular pentagram.
For n=6, only solution is the unicursal hexagram (see Wikipedia link).
For n=7, two regular heptagrams and three irregular forms are possible.
PROG
b(n)={subst(serlaplace(polcoef((1 - x)/(1 + (1 - 2*y)*x + 2*y*x^2) + O(x*x^n), n)), y, 1)}
a(n)={(if(n%2==0 && n > 2, b(n/2-1)/2) + a370068(n))/2} \\ Andrew Howroyd, Mar 01 2024
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Stewart Gordon, Nov 03 2013
EXTENSIONS
a(15) onwards from Andrew Howroyd, Feb 23 2024
STATUS
approved