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.

A091684 a(n) = 0 if n is divisible by 3, otherwise a(n) = n.

Original entry on oeis.org

0, 1, 2, 0, 4, 5, 0, 7, 8, 0, 10, 11, 0, 13, 14, 0, 16, 17, 0, 19, 20, 0, 22, 23, 0, 25, 26, 0, 28, 29, 0, 31, 32, 0, 34, 35, 0, 37, 38, 0, 40, 41, 0, 43, 44, 0, 46, 47, 0, 49, 50, 0, 52, 53, 0, 55, 56, 0, 58, 59, 0, 61, 62, 0, 64, 65, 0, 67, 68, 0, 70, 71, 0, 73, 74, 0, 76, 77, 0, 79, 80
Offset: 0

Views

Author

Paul Barry, Jan 28 2004

Keywords

Comments

Multiplicative with a(3^e) = 0, a(p^e) = p^e otherwise. - Mitch Harris, Jun 09 2005
Completely multiplicative with a(3) = 0, a(p) = p otherwise. - Charles R Greathouse IV, Feb 21 2011

Examples

			x + 2*x^2 + 4*x^4 + 5*x^5 + 7*x^7 + 8*x^8 + 10*x^10 + 11*x^11 + 13*x^13 + ...
		

Crossrefs

Programs

Formula

a(n) = Product_{k=0..2} Sum_{j=1..n} w(3)^(k*j), w(3)=e^(2*Pi*i/3), i=sqrt(-1).
a(n) = 2*n/3 - n*sin(2*Pi*n/3 + Pi/3)/sqrt(3) - n*cos(2*Pi*n/3 + Pi/3)/3.
G.f.: x*(x^4 + 2*x^3 + 2*x + 1)/((x^2 + x + 1)^2*(x - 1)^2). - Ralf Stephan, Jan 29 2004
a(n) = n^3 mod 3n = A000027(n)*A011655(n). - Paul Barry, Apr 13 2005
Dirichlet g.f.: zeta(s-1)*(1-1/3^(s-1)). - R. J. Mathar, Feb 10 2011
a(3*n) = 0, a(3*n + 1) = 3*n + 1, a(3*n + 2) = 3*n + 2. a(-n) = -a(n). - Michael Somos, Mar 19 2011
a(n) = n * sign(n mod 3). - Wesley Ivan Hurt, Sep 24 2017