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!)
A218531 The maximal number of solutions for a given row of a skyscraper puzzle of size n X n. 1

%I #37 Jan 15 2019 16:18:45

%S 1,1,2,6,22,105,675,4872,40614,403704,4342080,50457000,631548456,

%T 8484089328,121882518576,1865935562400,30341974222944,522466493255424,

%U 9499883854364928,181927524046316544,3713847873452280000,80378118226450517760,1816649795206970760960,42807228653571471429120

%N The maximal number of solutions for a given row of a skyscraper puzzle of size n X n.

%C In skyscraper puzzles one row represent skyscrapers of different heights. The number on the left/right of the row says how many skyscrapers are seen from the left/right. For example the row of length 4 with number 2 on the left and 2 on the right can be resolved in 6 ways: 1423, 2143, 2413, 3142, 3241, 3412.

%C a(n) is the size of the largest equivalence class of permutations of length n, where two permutations are considered equivalent if they have the same number of left-to-right maxima and the same number of right-to-left maxima.

%H Mauro Fiorentini, <a href="/A218531/b218531.txt">Table of n, a(n) for n = 1..100</a>

%H Tanya Khovanova and Joel Brewster Lewis, <a href="http://blog.tanyakhovanova.com/?p=451">Skyscrapers</a>

%H T. Khovanova and J. B. Lewis, <a href="https://arxiv.org/abs/1304.6445">Skyscraper Numbers</a>, arXiv preprint arXiv:1304.6445 [math.CO], 2013.

%H T. Khovanova and J. B. Lewis, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL16/Khovanova/khova6.html">Skyscraper Numbers</a>, J. Int. Seq. 16 (2013) #13.7.2.

%F a(n+1) is the maximum over all u, v of Sum_{k=1..n} binomial(n,k) * c(k,u-1) * c(n-k,v-1), where c(l,m) is an unsigned Stirling number of the first kind (see A132393).

%e Consider permutations of length 3.

%e Permutation 123 has 3 left-to-right maxima and 1 right-to-left maximum.

%e Permutation 321 has 1 left-to-right maximum and 3 right-to-left maxima.

%e Permutations 213 (312) have 2(1) left-to right maxima and 1(2) right-to-left maximum.

%e Permutations 132 and 231 have 2 left-to right maxima and 2 right-to-left maxima.

%e Hence, the largest class consists of 2 permutations and a(3)=2.

%t st1[n_, k_] := Abs[StirlingS1[n, k]];

%t sm[n_, u_, v_] := Sum[Binomial[n, k] st1[k, u-1] st1[n-k, v-1], {k, 1, n}];

%t a[1] = a[2] = 1; a[n_] := Module[{r = 0, t}, Do[t = sm[n-1, u, v]; If[t>r, r = t], {u, 1, n-1}, {v, 1, n-1}]; r];

%t Array[a, 20] (* _Jean-François Alcover_, Jul 23 2018, after _Joerg Arndt_ *)

%o (PARI)

%o st1(n,k) = abs(stirling(n,k,1));

%o sm(n,u,v) = sum(k=1,n, binomial(n,k) * st1(k,u-1) * st1(n-k,v-1));

%o a(n)= {

%o my(r=0, t);

%o if ( n<=2, return(1) );

%o n -= 1;

%o for (u=1, n,

%o for (v=1, n,

%o t = sm(n, u, v);

%o if ( t>r, r=t );

%o );

%o );

%o return( r );

%o }

%o /* _Joerg Arndt_, Mar 28 2013 */

%K nonn

%O 1,3

%A _Tanya Khovanova_ and _Joel B. Lewis_, Mar 27 2013

%E a(13) corrected by _Mauro Fiorentini_, Jan 15 2019

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 July 29 12:15 EDT 2024. Contains 374734 sequences. (Running on oeis4.)