login

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”).

A203234
(n-1)-st elementary symmetric function of the first n terms of the periodic sequence (1,1,1,2,1,1,1,2,...).
2
1, 2, 3, 7, 9, 11, 13, 28, 32, 36, 40, 84, 92, 100, 108, 224, 240, 256, 272, 560, 592, 624, 656, 1344, 1408, 1472, 1536, 3136, 3264, 3392, 3520, 7168, 7424, 7680, 7936, 16128, 16640, 17152, 17664, 35840, 36864, 37888, 38912, 78848, 80896
OFFSET
1,2
FORMULA
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
MATHEMATICA
r = {1, 1, 1, 2, 1, 1, 1, 2};
s = Flatten[{r, r, r, r, r, r, r, r, r}];
t[n_] := Part[s, Range[n]]
a[n_] := SymmetricPolynomial[n - 1, t[n]]
Table[a[n], {n, 1, 45}] (* A203234 *)
CROSSREFS
Cf. A203235.
Sequence in context: A294263 A345745 A280110 * A379359 A212985 A103797
KEYWORD
nonn
AUTHOR
Clark Kimberling, Dec 30 2011
STATUS
approved