Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #13 Sep 11 2019 17:39:40
%S 0,0,0,0,0,0,0,2,2,4,6,10,14,24,38,62,98,156,242,376,580,896,1380,
%T 2126,3266,5008,7658,11688,17804,27084,41148,62448,94668,143360,
%U 216864,327726,494790,746368,1124950,1694286,2549942,3835120,5764274,8658442,12997998,19501468
%N Sum of the asymmetry degrees of all compositions of n with parts in {3,4,5,6, ...}.
%C The asymmetry degree of a finite sequence of numbers is defined to be the number of pairs of symmetrically positioned distinct entries. Example: the asymmetry degree of (2,7,6,4,5,7,3) is 2, counting the pairs (2,3) and (6,5).
%C A sequence is palindromic if and only if its asymmetry degree is 0.
%D S. Heubach and T. Mansour, Combinatorics of Compositions and Words, CRC Press, 2010.
%H Colin Barker, <a href="/A276059/b276059.txt">Table of n, a(n) for n = 0..1000</a>
%H Krithnaswami Alladi and V. E. Hoggatt, Jr. <a href="http://www.fq.math.ca/Scanned/13-3/alladi1.pdf">Compositions with Ones and Twos</a>, Fibonacci Quarterly, 13 (1975), 233-239.
%H V. E. Hoggatt, Jr., and Marjorie Bicknell, <a href="http://www.fq.math.ca/Scanned/13-4/hoggatt1.pdf">Palindromic compositions</a>, Fibonacci Quart., Vol. 13(4), 1975, pp. 350-356.
%H <a href="/index/Rec#order_10">Index entries for linear recurrences with constant coefficients</a>, signature (2,0,-1,0,-1,2,0,-1,-1,-1).
%F G.f. g(z) = 2*z^7*(1-z)/((1+z)(1-z+z^3)(1-z-z^3)^2). In the more general situation of compositions into a[1]<a[2]<a[3]<..., denoting F(z) = Sum(z^{a[j]},j>=1}, we have g(z)=(F(z)^2-F(z^2))/((1+F(z))(1-F(z))^2).
%F a(n) = Sum(k*A276058(n,k), k>=0).
%e a(7) = 2 because the compositions of 7 with parts in {3,4,5,...} are 7, 34, and 43 and the sum of their asymmetry degrees is 0+1+1.
%p g := 2*z^7*(1-z)/((1+z)*(1-z+z^3)*(1-z-z^3)^2): gser := series(g, z = 0, 55): seq(coeff(gser, z, n), n = 0 .. 50);
%t CoefficientList[Series[2 x^7*(1 - x)/((1 + x) (1 - x + x^3) (1 - x - x^3)^2), {x, 0, 45}], x] (* _Michael De Vlieger_, Aug 28 2016 *)
%t LinearRecurrence[{2,0,-1,0,-1,2,0,-1,-1,-1},{0,0,0,0,0,0,0,2,2,4},50] (* _Harvey P. Dale_, Sep 11 2019 *)
%o (PARI) concat(vector(7), Vec(2*x^7*(1-x)/((1+x)*(1-x+x^3)*(1-x-x^3)^2) + O(x^20))) \\ _Colin Barker_, Aug 28 2016
%Y Cf. A276058.
%K nonn,easy
%O 0,8
%A _Emeric Deutsch_, Aug 22 2016