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.

A007879 Chimes made by clock striking the hour and half-hour.

Original entry on oeis.org

1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10, 1, 11, 1, 12, 1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10, 1, 11, 1, 12, 1, 1, 1, 2, 1, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10, 1, 11, 1, 12
Offset: 0

Views

Author

Jan Wolitzky

Keywords

Comments

Periodic sequence with period 24. - Michel Marcus, Jul 17 2013

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[(1+x-x^2-x^24-13x^25+x^26+12x^27)/((1-x^24)(1-x^2)^2),{x,0,71}],x] (* Stefano Spezia, Mar 27 2022 *)
  • PARI
    a(n)= 1 + ((n-1)*(1-(-1)^n)/4) % 12 \\ Michel Marcus, Jul 17 2013

Formula

From Hieronymus Fischer, Sep 25 2007: (Start)
G.f.: 1/(1-x^2)+x(12x^26-13x^24+1)/((1-x^24)(1-x^2)^2).
G.f.: (1+x-x^2-x^24-13x^25+x^26+12x^27)/((1-x^24)(1-x^2)^2).
a(n) = 1 + ((n-1)*(1-(-1)^n)/4) mod 12.
a(n) = 1 + ((n-1)*(n mod 2)/2) mod 12. (End)