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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A214087 Sum of the squares of numbers of nonconsecutive tableaux over all partitions of n. 3

%I #17 May 23 2018 11:00:57

%S 1,1,1,2,6,21,92,489,3000,20970,166714,1467337,14212491,149992662,

%T 1723338952,21393028409,285061374438,4054622024814,61301381208116,

%U 982904573560309,16672187358390360,298389960090957330,5617735345244596804,110942937545014894799

%N Sum of the squares of numbers of nonconsecutive tableaux over all partitions of n.

%C A standard Young tableau (SYT) where entries i and i+1 never appear in the same row is called a nonconsecutive tableau.

%H Alois P. Heinz, <a href="/A214087/b214087.txt">Table of n, a(n) for n = 0..40</a>

%H T. Y. Chow, H. Eriksson and C. K. Fan, <a href="http://www.combinatorics.org/Volume_11/Abstracts/v11i2a3.html">Chess tableaux</a>, Elect. J. Combin., 11 (2) (2005), #A3.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Young_tableau">Young tableau</a>

%p b:= proc(l, t) option remember; local n, s; n, s:= nops(l),

%p add(i, i=l); `if`(s=0, 1, add(`if`(t<>i and l[i]>

%p `if`(i=n, 0, l[i+1]), b(subsop(i=l[i]-1, l), i), 0), i=1..n))

%p end:

%p g:= (n, i, l)-> `if`(n=0 or i=1, b([l[], 1$n], 0)^2, `if`(i<1, 0,

%p add(g(n-i*j, i-1, [l[], i$j]), j=0..n/i))):

%p a:= n-> `if`(n<2, 1, g(n, n, [])):

%p seq(a(n), n=0..20);

%t b[l_, t_] := b[l, t] = Module[{n = Length[l], s = Total[l]}, If[s == 0, 1, Sum[If[t != i && l[[i]] > If[i == n, 0, l[[i + 1]]], b[ReplacePart[l, i -> l[[i]] - 1], i], 0], {i, 1, n}]]];

%t g[n_, i_, l_] := If[n == 0 || i == 1, b[Join[l, Table[1, n]], 0]^2, If[i < 1, 0, Sum[g[n - i*j, i - 1, Join[l, Table[i, j]]], {j, 0, n/i}]]];

%t a[n_] := If[n < 2, 1, g[n, n, {}]]; Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, May 23 2018, translated from Maple *)

%Y Cf. A108774, A237770.

%K nonn

%O 0,4

%A _Alois P. Heinz_, Jul 02 2012

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 19 12:50 EDT 2024. Contains 376012 sequences. (Running on oeis4.)