login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A272135
Numbers of ways of placing the numbers 1, ..., n on a circle (not counting rotations and reflections) such that for each s in {1, ..., n(n+1)/2}, there exists a connected subset S of the circle such that the numbers covered by S add up to s.
0
1, 1, 1, 1, 2, 10, 41, 126, 537, 3956, 19776, 76340, 388047, 2775155, 15013424, 54188455, 272147013
OFFSET
0,5
EXAMPLE
Out of the 3 essentially different arrangements (1, 2, 3, 4), (1, 2, 4, 3), (1, 3, 2, 4) of four points on a circle, only (1, 2, 3, 4) and (1, 3, 2, 4) yield all sums in {1, ..., 10}, so a(4) = 2.
MATHEMATICA
ok[w_] := Block[{v = Join[w, w], n = Length@w}, n(n+1)/2 == Length@ Union@ Flatten@ Table[ Total@ Take[v, {i, i+k}], {i, n}, {k, 0, n-1}]]; a[n_] := If[n<3, 1, Sum[ Length@ Select[ Permutations@ Complement[ Range@n, e], ok@ Join[e, #] &], {e, Flatten[ Table[{a, 1, b}, {a, 2, n}, {b, a+1, n}], 1]}]]; a /@ Range[0, 9] (* Giovanni Resta, Apr 21 2016 *)
CROSSREFS
Sequence in context: A227545 A127113 A051540 * A125130 A110684 A197175
KEYWORD
nonn,more
AUTHOR
Jens Voß, Apr 21 2016
EXTENSIONS
a(15) from Giovanni Resta, Apr 21 2016
a(16) from Giovanni Resta, Apr 22 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 14:54 EDT 2024. Contains 376178 sequences. (Running on oeis4.)