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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A091217 Number of permutations p of [n] such that the n-1 sums p(i)+p(i+1) (i=1,2,...n-1) are all distinct. 3
1, 1, 2, 6, 16, 54, 232, 1132, 6024, 36262, 242080, 1775316, 14135584, 122077832, 1131066448, 11230979624, 118638940864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
For a(4), we have 2+3=1+4, so a(4)=4! - (23)(14) - (14)(32) = 24 - 4 - 4 = 16.
For a(5), we have 1+4=2+3, 1+5=2+4, 2+5=3+4 to avoid.
PROG
(PARI) { for (i=3, 9, v=vector(i-1); c=0; for (j=1, i!, x=numtoperm(i, j); for (k=1, i-1, v[k]=x[k]+x[k+1]); fl=0; v=vecsort(v); for (z=1, i-2, if (v[z]==v[z+1], fl=1; break)); if (fl==0, c++)); print1(", "c)) }
CROSSREFS
Sequence in context: A147949 A147940 A147931 * A147891 A147922 A147913
KEYWORD
hard,more,nonn
AUTHOR
Jon Perry, Feb 23 2004
EXTENSIONS
a(10)-a(11) from John W. Layman, Mar 10 2004
More terms from R. H. Hardin, Nov 11 2008
Definition corrected by Emeric Deutsch, Nov 28 2008
a(0)=1 prepended by Alois P. Heinz, Jul 06 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 23 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)