OFFSET
0,3
COMMENTS
A rod is 'placed' into a LxLxL lattice by occupying a row of L sites in the lattice, along any of the 3 orthogonal directions. Rods cannot intersect; that is, a site cannot belong to more than one rod.
This appears in connection to the degeneracy of the ground states of certain models in lattice statistics.
For each L, there can be at most L^2 rods in the cubic lattice. The terms in the data section cover the range 0<=L<=5. The adjoining b-file contains all terms up to L=16.
The (ordinary) generating function f(L,x) is also formally the partition function for the statistics of the associated lattice model, if one regards the expansion variable x as the 'activity' (the physical interpretation of this parameter depends on the context in which the model appears).
LINKS
Marcos Simoes, Table of n, a(n) for n = 0..1512
FORMULA
G.f.: f(L,x) = Sum_{a=0..L} Sum_{b=0..L} Sum_{c=0..L} ( binomial(L,a) * binomial(L,b) * binomial(L,c) * ((1+x)^(L-c)-1)^a * ((1+x)^(L-a)-1)^b * ((1+x)^(L-b)-1)^c ).
EXAMPLE
The values for L=0,1,2,3 read, respectively:
1
1 3
1 12 42 44 9
1 27 270 1278 3078 3888 2592 918 189 21
MATHEMATICA
Unprotect[Power]; Power[0, 0]=1; Protect[Power]; (* This is necessary so that 0^0=1. *)
(* This defines the generating function: *)
f[L_, x_]:=Sum[Binomial[L, a]*Binomial[L, b]*Binomial[L, c]*((1 + x)^(L - c) - 1)^a*((1 + x)^(L - a) - 1)^b*((1 + x)^(L - b) - 1)^c, {a, 0, L}, {b, 0, L}, {c, 0, L}]
(* The following computes a specific value of the sequence: *)
a[L_, n_]=Coefficient[f[L, x], x, n]
(* The array of coefficients up to L=16 may be generated by: *)
Table[CoefficientList[f[L, x], x], {L, 0, 16}]
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Marcos Simoes, Feb 10 2011
STATUS
approved