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.

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

Original entry on oeis.org

1, 2, 3, 10, 13, 16, 19, 60, 69, 78, 87, 270, 297, 324, 351, 1080, 1161, 1242, 1323, 4050, 4293, 4536, 4779, 14580, 15309, 16038, 16767, 51030, 53217, 55404, 57591, 174960, 181521, 188082, 194643, 590490, 610173, 629856, 649539, 1968300
Offset: 1

Views

Author

Clark Kimberling, Dec 30 2011

Keywords

Crossrefs

Cf. A203234.

Programs

  • Mathematica
    r = {1, 1, 1, 3, 1, 1, 1, 3};
    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, 47}]     (* A203235 *)

Formula

Conjecture: a(n) = 6*a(n-4)-9*a(n-8) with G.f. x*(1+2*x+3*x^2+10*x^3+7*x^4+4*x^5+x^6) / ( (-1+3*x^4)^2 ). - R. J. Mathar, Oct 15 2013