login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A257075 a(n) = (-1)^(n mod 3). 6

%I #39 May 25 2023 15:29:14

%S 1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,

%T 1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,

%U -1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1,1,-1,1

%N a(n) = (-1)^(n mod 3).

%C Period 3: repeat [1, -1, 1]. - _Wesley Ivan Hurt_, Jul 02 2016

%H G. C. Greubel, <a href="/A257075/b257075.txt">Table of n, a(n) for n = 0..2500</a>

%H Michael Somos, <a href="http://grail.eecs.csuohio.edu/~somos/rfmc.html">Rational Function Multiplicative Coefficients</a>

%H <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,1).

%F Euler transform of length 6 sequence [-1, 1, 2, 0, 0, -1].

%F a(n) = b(2*n + 1) where b() is multiplicative with b(2^e) = 0^e, b(3^e) = -1 if e>0, otherwise b(p^e) = 1.

%F a(n) = a(-1-n) = a(n+3) = -a(n-1)*a(n-2) for all n in Z.

%F G.f.: (1 - x + x^2) / (1 - x^3).

%F G.f.: (1 - x) * (1 - x^6) / ((1 - x^2) * (1 - x^3)^2).

%F G.f.: 1 / (1 + x / (1 + 2*x^2 / (1 - x / (1 - x / (1 + x))))).

%F Given g.f. A(x), then x*A(x^2) = Sum_{k>0} (x^k - x^(2*k)) - 2*(x^(3*k) - x^(6*k)).

%F a(n) = A131561(n+1) for all n in Z.

%F a(n) = (-1)^n * A130151(n) for all n in Z.

%F Convolution inverse is A257076.

%F PSUM transform is A008611.

%F BINOMIAL transform is A086953.

%F 1 / (1 - a(0)*x / (1 - a(1)*x / (1 - a(2)*x / ...))) is the g.f. of A168505.

%F From _Wesley Ivan Hurt_, Jul 02 2016: (Start)

%F a(n) = (1 + 2*cos(2*n*Pi/3) - 2*sqrt(3)*sin(2*n*Pi/3))/3.

%F a(n) = 2*sgn((n+2) mod 3) - 1. (End)

%F E.g.f.: (exp(3*x/2) + 4*sin(Pi/6-sqrt(3)*x/2))*exp(-x/2)/3. - _Ilya Gutkovskiy_, Jul 02 2016

%e G.f. = 1 - x + x^2 + x^3 - x^4 + x^5 + x^6 - x^7 + x^8 + x^9 - x^10 + ...

%e G.f. = q - q^3 + q^5 + q^7 - q^9 + q^11 + q^13 - q^15 + q^17 + q^19 + ...

%p A257075:=n->(-1)^(n mod 3): seq(A257075(n), n=0..100); # _Wesley Ivan Hurt_, Jul 02 2016

%t a[ n_] := (-1)^Mod[n, 3]; Table[a[n], {n, 0, 100}]

%t LinearRecurrence[{0,0,1},{1,-1,1},80] (* or *) PadRight[{},100,{1,-1,1}] (* _Harvey P. Dale_, May 25 2023 *)

%o (PARI) {a(n) = (-1)^(n%3)};

%o (PARI) {a(n) = 1 - 2 * (n%3 == 1)};

%o (PARI) {a(n) = [1, -1, 1][n%3 + 1]};

%o (PARI) {a(n) = my(A, p, e); n = abs(2*n + 1); A = factor(n); prod( k=1, matsize(A)[1], [p, e] = A[k,]; if( p==2, 0, p==3, -1, 1))};

%o (Magma) [(-1)^(n mod 3) : n in [0..100]]; // _Wesley Ivan Hurt_, Jul 02 2016

%Y Cf. A008611, A086953, A130151, A131561, A168505, A257076.

%K sign,easy

%O 0,1

%A _Michael Somos_, Apr 15 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)