cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A192205 a(n) = sum of absolute values of coefficients in (1-x-x^2+x^3)^n.

This page as a plain text file.
%I A192205 #16 Aug 01 2013 18:16:08
%S A192205 1,4,12,36,116,344,1104,3280,10456,31152,98804,295988,935876,2811540,
%T A192205 8870324,26695724,84060148,253376840,796635360,2404558304,7549431884,
%U A192205 22820942416,71541295984,216562743948,677938097756,2054922521644
%N A192205 a(n) = sum of absolute values of coefficients in (1-x-x^2+x^3)^n.
%C A192205 Conjecture: limit a(n)^(1/n) = 16*sqrt(3)/9 = 3.079201..., which is substantiated by the observation that the sums of the coefficients squared in (1-x-x^2+x^3)^n equals binomial(4n,n) (cf. A005810).
%e A192205 The triangle A227964 of coefficients in (1+x-x^2-x^3)^n begins:
%e A192205 n=0: [1];
%e A192205 n=1: [1, -1, -1, 1];
%e A192205 n=2: [1, -2, -1, 4, -1, -2, 1];
%e A192205 n=3: [1, -3, 0, 8, -6, -6, 8, 0, -3, 1];
%e A192205 n=4: [1, -4, 2, 12, -17, -8, 28, -8, -17, 12, 2, -4, 1];
%e A192205 n=5: [1, -5, 5, 15, -35, -1, 65, -45, -45, 65, -1, -35, 15, 5, -5, 1];
%e A192205 n=6: [1, -6, 9, 16, -60, 24, 116, -144, -66, 220, -66, -144, 116, 24, -60, 16, 9, -6, 1]; ...
%e A192205 This sequence gives the sums of the absolute values of the coefficients for n>=0.
%t A192205 Table[Total[Abs[CoefficientList[Expand[(1-x-x^2+x^3)^n],x]]],{n,0,30}] (* _Harvey P. Dale_, Mar 03 2013 *)
%o A192205 (PARI) {a(n)=sum(k=0,3*n,abs(polcoeff((1-x-x^2+x^3)^n,k)))}
%o A192205 for(n=0,30,print1(a(n),", "))
%Y A192205 Cf. A192210, A084611, A084613, A084615, A084775, A084776, A084777, A084778, A084779, A084780.
%Y A192205 Cf. A227964 (triangle).
%K A192205 nonn
%O A192205 0,2
%A A192205 _Paul D. Hanna_, Jun 25 2011