OFFSET
1,2
COMMENTS
Number of monotone n-weightings of a certain connected bipartite digraph. A monotone n-(vertex) weighting of a digraph D=(V,E) is a function w: V -> {0,1,..,n-1} such that w(v1)<=w(v2) for every arc (v1,v2) from E.
Dimensions of certain Lie algebra (see Landsberg-Manivel reference for precise definition). - N. J. A. Sloane, Oct 15 2007
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Goran Kilibarda and Vladeta Jovovic, Antichains of Multisets, J. Integer Seqs., Vol. 7, 2004.
J. M. Landsberg and L. Manivel, The sextonions and E7 1/2, Adv. Math. 201 (2006), 143-179. [Th. 7.1, case a=-2/3]
Index entries for linear recurrences with constant coefficients, signature (6,-15,20,-15,6,-1).
FORMULA
a(n) = n + 12*binomial(n, 2) + 38*binomial(n, 3) + 45*binomial(n, 4) + 18*binomial(n, 5).
a(n) = n*(n+1)*(2*n+1)*(3*n+1)*(3*n+2)/120.
G.f.: x*(1+x)*(1+7*x+x^2)/(1-x)^6. - Colin Barker, Apr 01 2012
a(n) = sum(i=1..n, sum(j=1..n, i^2 * Min(i,j))). - Enrique PĂ©rez Herrero, Jan 30 2013
MATHEMATICA
Rest[CoefficientList[Series[x*(1 + x)*(1 + 7*x + x^2)/(1 - x)^6, {x, 0, 50}], x]] (* or *) Table[n*(n+1)*(2*n+1)*(3*n+1)*(3*n+2)/120, {n, 0, 50}] (* G. C. Greubel, Oct 07 2017 *)
PROG
(PARI) x='x+O('x^50); Vec(x*(1+x)*(1+7*x+x^2)/(1-x)^6) \\ G. C. Greubel, Oct 07 2017
(Magma) [n*(n+1)*(2*n+1)*(3*n+1)*(3*n+2)/120: n in [0..50]]; // G. C. Greubel, Oct 07 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Goran Kilibarda and Vladeta Jovovic, Jul 01 2003
STATUS
approved