A013698 a(n) = binomial(3*n+2, n-1).
1, 8, 55, 364, 2380, 15504, 100947, 657800, 4292145, 28048800, 183579396, 1203322288, 7898654920, 51915526432, 341643774795, 2250829575120, 14844575908435, 97997533741800, 647520696018735, 4282083008118300
Offset: 1
Links
- Robert Israel, Table of n, a(n) for n = 1..1000
- M. S. Ravi et al., Dynamic Pole Assignment and Schubert Calculus, SIAM J. Control Optimization, 34 (1996), 813-832, esp. p. 825.
- Daniel W. Stasiuk, An Enumeration Problem for Sequences of n-ary Trees Arising from Algebraic Operads, Master's Thesis, University of Saskatchewan-Saskatoon (2018).
Crossrefs
Programs
-
GAP
List([1..25], n-> Binomial(3*n+2, n-1)) # G. C. Greubel, Mar 21 2019
-
Magma
[Binomial(3*n+2, n-1): n in [1..25]]; // Vincenzo Librandi, Aug 10 2015
-
Maple
seq(binomial(3*n+2,n-1), n=0..30); # Robert Israel, Aug 09 2015
-
Mathematica
Table[Binomial[3*n+2, n-1], {n, 25}] (* Arkadiusz Wesolowski, Apr 02 2012 *)
-
PARI
first(m)=vector(m,n,binomial(3*n+2, n-1)); /* Anders Hellström, Aug 09 2015 */
-
Sage
[binomial(3*n+2, n-1) for n in (1..25)] # G. C. Greubel, Mar 21 2019
Formula
G.f.: g/((g-1)^3*(3*g-1)) where g*(1-g)^2 = x. - Mark van Hoeij, Nov 09 2011
a(n) = Sum_{k=0..n-1} binomial(2*n+k+2,k). - Arkadiusz Wesolowski, Apr 02 2012
D-finite with recurrence 2*(2*n+3)*(n+1)*a(n) -n*(67*n+34)*a(n-1) +30*(3*n-1)*(3*n-2)*a(n-2)=0. - R. J. Mathar, Feb 05 2013
a(n+1) = (3*n+5)*(3*n+4)*(3*n+3)*a(n)/((2*n+5)*(2*n+4)*n). - Robert Israel, Aug 09 2015
With offset 0, the o.g.f. equals f(x)*g(x)^5, where f(x) is the o.g.f. for A005809 and g(x) is the o.g.f. for A001764. More generally, f(x)*g(x)^k is the o.g.f. for the sequence binomial(3*n + k,n). Cf. A045721 (k = 1), A025174 (k = 2), A004319 (k = 3), A236194 (k = 4), A165817 (k = -1), A117671 (k = -2). - Peter Bala, Nov 04 2015
Comments