A266561 12-dimensional square numbers.
1, 14, 104, 546, 2275, 8008, 24752, 68952, 176358, 419900, 940576, 1998724, 4056234, 7904456, 14858000, 27041560, 47805615, 82317690, 138389160, 227613750, 366913365, 580610160, 903171360, 1382805840, 2086129500, 3104160696, 4559958144, 6618272584
Offset: 0
Links
- Feihu Liu, Guoce Xin, and Chen Zhang, Ehrhart Polynomials of Order Polytopes: Interpreting Combinatorial Sequences on the OEIS, arXiv:2412.18744 [math.CO], 2024. See p. 15.
- OEIS Wiki, Square hyperpyramidal numbers, line d=12 of first table.
Programs
-
Magma
[Binomial(n+11,11)*(n+6)/6: n in [0..40]]; // Vincenzo Librandi, Jan 01 2016
-
Mathematica
CoefficientList[Series[(1 + x)/(1 - x)^13, {x, 0, 33}], x] (* Vincenzo Librandi, Jan 01 2016 *)
Formula
a(n) = binomial(n+11,11)*(n+6)/6.
a(n) = 2*binomial(n+12,12) - binomial(n+11,11).
a(n) = binomial(n+11,11) + 2*binomial(n+11,12) for n>0.
G.f.: (1+x)/(1-x)^13. - Vincenzo Librandi, Jan 01 2016
Comments