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!)
A189052 a(n) is the number of inversions in all compositions of n. 5
0, 0, 0, 1, 4, 14, 42, 118, 314, 806, 2010, 4902, 11738, 27686, 64474, 148518, 338906, 767014, 1723354, 3847206, 8539098, 18854950, 41438170, 90682406, 197675994, 429372454, 929582042, 2006430758, 4318579674, 9270965286, 19854281690, 42422744102, 90452806618, 192478164006 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums of triangle in A189073.
LINKS
M. Archibald, A. Blecher, A. Knopfmacher, M. E. Mays, Inversions and Parity in Compositions of Integers, J. Int. Seq., Vol. 23 (2020), Article 20.4.1.
S. Heubach, A. Knopfmacher, M. E. Mays and A. Munagi, Inversions in Compositions of Integers, Quaest. Math. 34 (2011), no. 2, 187-202.
FORMULA
a(n) = 2^(n-1)*(1/24*(n+2)*(n+1)-5/36*(n+1)-5/108)-2/27*(-1)^n for n>0.
a(n) = +5*a(n-1) -6*a(n-2) -4*a(n-3) +8*a(n-4).
G.f.: x^3*(1-x)/((1+x)*(1-2*x)^3).
EXAMPLE
a(4)=4. There are eight compositions of 4. Five of these (the partitions of 4) have no inversions. The remaining three: 3+1, 2+1+1, 1+2+1 have 1,2,1 inversions respectively. - Geoffrey Critzer, Mar 19 2014
MAPLE
with(PolynomialTools):n:=33:taypoly:=taylor(x^3*(1-x)/((1+x)*(1-2*x)^3), x=0, n+1):seq(coeff(taypoly, x, m), m=0..n); # Nathaniel Johnston, Apr 17 2011
# second Maple program:
a:= n-> `if`(n=0, 0, (<<0|1|0|0>, <0|0|1|0>, <0|0|0|1>,
<8|-4|-6|5>>^n. <<-1/8, 0, 0, 1>>)[1, 1]):
seq(a(n), n=0..40); # Alois P. Heinz, Apr 04 2016
MATHEMATICA
nn=30; CoefficientList[Series[(1-x)*x^3/((1+x)*(1-x-x)^3), {x, 0, nn}], x] (* Geoffrey Critzer, Mar 19 2014 *)
LinearRecurrence[{5, -6, -4, 8}, {0, 0, 0, 1, 4}, 40] (* Harvey P. Dale, May 25 2016 *)
PROG
(PARI) A189052(n)=2^(n-1)*(1/24*(n+2)*(n+1)-5/36*(n+1)-5/108)-2/27*(-1)^n;
vector(33, n, A189052(n)) /* show terms */ /* Joerg Arndt, Apr 16 2011 */
CROSSREFS
Cf. A189073.
Sequence in context: A347583 A124617 A124618 * A189426 A007076 A135483
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Apr 16 2011
STATUS
approved

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 16 11:48 EDT 2024. Contains 371711 sequences. (Running on oeis4.)