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.

Showing 1-1 of 1 results.

A152894 Periodic sequence [0,0,1,4,0] of period 5.

Original entry on oeis.org

0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0, 1, 4, 0, 0, 0
Offset: 0

Views

Author

Richard Choulet, Dec 14 2008

Keywords

Crossrefs

Cf. A026062.

Programs

  • Maple
    seq((n^3-n) mod 5,n=0..50); # Gary Detlefs, Mar 20 2010
  • Mathematica
    PadRight[{},90,{0,0,1,4,0}] (* Harvey P. Dale, Jan 29 2013 *)

Formula

a(n+5) = a(n) with a(0) = a(1) = a(4) = 0, a(2) = 1 and a(3) = 4;
O.g.f.: (z^2+4*z^3)/(1-z^5);
a(n) = 1 + (-1/2 - (1/2)*sqrt(5))*cos(2*n*Pi/5) + (-(3/10)*sqrt(2)*sqrt(5 - sqrt(5)))*sin(2*n*Pi/5) + (-1/2 + (1/2)*sqrt(5))*cos(4*n*Pi/5) + ((3/10)*sqrt(2)*sqrt(5 + sqrt(5)))*sin(4*n*Pi/5).
a(n) = (n^3 - n) mod 5. - Gary Detlefs, Mar 20 2010
Showing 1-1 of 1 results.