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.

A088689 Jacobsthal numbers modulo 3.

Original entry on oeis.org

0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1, 0, 2, 2, 0, 1, 1
Offset: 0

Views

Author

Paul Barry, Oct 06 2003

Keywords

Comments

Period 6 = A175286(3).

Programs

Formula

E.g.f.: exp(x) - exp(-x/2)*cos(sqrt(3)*x/2) - 3*exp(x/2)*sin(sqrt(3)*x/2)/sqrt(3);
E.g.f.: F(1, 3, 1, x) + F(1, 3, 2, x) + F(1, 6, 4, x) + F(1, 6, 5, x);
a(n) = a(n-6), with a(0)=0, a(1)=a(2)=1, a(3)=0, a(4)=a(5)=2;
a(n) = 1 - cos(2*Pi*n/3) - 3*sin(Pi*n/3)/3.
a(n) = A001045(n) mod 3.
G.f.: x*(1+2*x^3)/(1-x+x^2-x^3+x^4-x^5); a(n)=a(n-1)-a(n-2)+a(n-3)-a(n-4)+a(n-5). - Paul Barry, Jul 27 2005
a(n) = ( n * floor( 3(n+1)/2 ) - 2n ) mod 3. - Wesley Ivan Hurt, Oct 13 2013