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!)
A226897 a(n) is the total number of parts in the set of partitions of an n X n square lattice into squares, considering only the list of parts. 2

%I #28 Feb 12 2023 13:31:16

%S 1,5,16,59,156,529,1351,3988,10236,27746,66763,176783,412450

%N a(n) is the total number of parts in the set of partitions of an n X n square lattice into squares, considering only the list of parts.

%C The sequence was derived from the documents in the Links section. The documents are first specified in the Links section of A034295.

%H Jon E. Schoenfield, <a href="https://oeis.org/A034295/a034295.txt">Table of solutions for n <= 12</a>

%H Alois P. Heinz, <a href="https://oeis.org/A034295/a034295_1.txt">More ways to divide an 11 X 11 square into sub-squares</a>

%H Alois P. Heinz, <a href="https://oeis.org/A034295/a034295_2.txt">List of different ways to divide a 13 X 13 square into sub-squares</a>

%e For n = 3, the partitions are:

%e Square side 1 2 3 Total Parts

%e 9 0 0 9

%e 5 1 0 6

%e 0 0 1 1

%e Total 16

%e So a(3) = 16.

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

%p if max(l[])>n then {} elif n=0 or l=[] then {0}

%p elif min(l[])>0 then t:=min(l[]); b(n-t, map(h->h-t, l))

%p else for k do if l[k]=0 then break fi od; s:={};

%p for i from k to nops(l) while l[i]=0 do s:=s union

%p map(v->v+x^(1+i-k), b(n, [l[j]$j=1..k-1,

%p 1+i-k$j=k..i, l[j]$j=i+1..nops(l)]))

%p od; s

%p fi

%p end:

%p a:= n-> add(coeff(add(j, j=b(n, [0$n])), x, i), i=1..n):

%p seq(a(n), n=1..9); # _Alois P. Heinz_, Jun 21 2013

%t $RecursionLimit = 1000; b[n_, l_List] := b[n, l] = Module[{i, k, s, t}, Which [Max[l]>n, {}, n == 0 || l == {}, {0}, Min[l]>0, t = Min[l]; b[n-t, l-t], True, k = Position[l, 0, 1, 1][[1, 1]]; s = {}; For[i = k, i <= Length[l] && l[[i]]== 0, i++, s = s ~Union~ Map[Function[{v}, v+x^(1+i-k)], b[n, Join[l[[1 ;; k-1]], Array[1+i-k&, i-k+1], l[[i+1 ;; -1]] ]]]]; s]]; a[n_] := Sum[Coefficient[Sum[j, {j, b[n, Array[0&, n]]}], x, i], {i, 1, n}]; Table[a[n], {n, 1, 9}] (* _Jean-François Alcover_, May 29 2015, after _Alois P. Heinz_ *)

%Y Cf. A034295, A045846, A226554.

%K nonn,hard,more

%O 1,2

%A _Christopher Hunt Gribble_, Jun 21 2013

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)