login
(n-1)-st elementary symmetric function of the first n terms of the periodic sequence (1,1,1,2,1,1,1,2,...).
2

%I #7 Oct 15 2013 14:13:14

%S 1,2,3,7,9,11,13,28,32,36,40,84,92,100,108,224,240,256,272,560,592,

%T 624,656,1344,1408,1472,1536,3136,3264,3392,3520,7168,7424,7680,7936,

%U 16128,16640,17152,17664,35840,36864,37888,38912,78848,80896

%N (n-1)-st elementary symmetric function of the first n terms of the periodic sequence (1,1,1,2,1,1,1,2,...).

%F Conjecture: a(n) = 4*a(n-4)-4*a(n-8) with G.f. x*(1+2*x+3*x^2+7*x^3+5*x^4+3*x^5+x^6) / (-1+2*x^4)^2 . - _R. J. Mathar_, Oct 15 2013

%t r = {1, 1, 1, 2, 1, 1, 1, 2};

%t s = Flatten[{r, r, r, r, r, r, r, r, r}];

%t t[n_] := Part[s, Range[n]]

%t a[n_] := SymmetricPolynomial[n - 1, t[n]]

%t Table[a[n], {n, 1, 45}] (* A203234 *)

%Y Cf. A203235.

%K nonn

%O 1,2

%A _Clark Kimberling_, Dec 30 2011