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!)
A102283 Period 3: repeat [0, 1, -1]. 46

%I #81 Dec 18 2023 09:18:10

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

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

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

%N Period 3: repeat [0, 1, -1].

%C The sequence is the non-principal Dirichlet character of the reduced residue system mod 3. (The other is A011655.) Associated Dirichlet L-functions are L(1, chi) = Sum_{n >= 1} a(n)/n = A073010, L(2, chi)= Sum_{n >= 1} a(n)/n^2 = A086724, or L(3, chi)= Sum_{n >= 1} a(n)/n^3 = A129404. [Jolley eq 310] - _R. J. Mathar_, Jul 15 2010

%C a(n) = 2*D(n) - L(n), where L(n) denotes the n-th Lucas number and D(n) denotes the so-called n-th quadrapell number -- defined and discussed by Dursun Tasci in his paper (see References below). We have D(n) = D(n-2) + 2*D(n-3) + D(n-4), D(0) = D(1) = D(2) = 1, D(3) = 2. G.f. D(x) = (1+x-x^3)/((1-x-x^2)(1+x+x^2)). - _Roman Witula_, Jul 31 2012

%C This is a strong elliptic divisibility sequence t_n as given in [Kimberling, p. 16] where x = -1, y = 0, z = -1. - _Michael Somos_, Nov 27 2019

%D M. N. Huxley, Area, Lattice Points and Exponential Sums, Oxford, 1996; p. 236.

%D L. B. W. Jolley, Summation of Series, Dover Publications (1961).

%H C. Kimberling, <a href="http://www.fq.math.ca/Scanned/17-1/kimberling1.pdf">Strong divisibility sequences and some conjectures</a>, Fib. Quart., 17 (1979), 13-17.

%H R. J. Mathar, <a href="http://arxiv.org/abs/1008.2547">Table of Dirichlet L-series..</a>, arXiv:1008.2547 [math.NT], 2010-2015, Table 2, Table 22 for m=3, r=2.

%H D. Tasci, <a href="http://dergipark.ulakbim.gov.tr/hujms/article/view/5000017451">On Quadrapell Numbers and Quadrapell Polynomials</a>, Hacettepe J. Math. Stat., 38 (3) (2009), 265-275.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/KroneckerSymbol.html">Kronecker Symbol.</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Kronecker_symbol">Kronecker Symbol.</a>

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

%F a(n) = A049347(n-1).

%F a(n) = -a(n-1) - a(n-2); a(0) = 0, a(1) = 1. G.f.: x/(1+x+x^2). - _Philippe Deléham_, Nov 03 2008

%F a(n) = -2*sin(4*Pi*n/3)/sqrt(3) = 2*sin(8*Pi*n/3)/sqrt(3). - _Jaume Oliver Lafont_, Dec 05 2008

%F a(n) = 2*sin(2*Pi*n/3)/sqrt(3). - _Roman Witula_, Jul 31 2012

%F a(n) = Legendre(n, 3), the Legendre symbol for p = 3. - _Alonso del Arte_, Feb 06 2013

%F a(n) = (-3/n), where (k/n) is the Kronecker symbol. See the Eric Weisstein and Wikipedia links. - _Wolfdieter Lang_, May 29 2013

%F Dirichlet g.f.: L(chi_2(3),s), with chi_2(3) the nontrivial Dirichlet character modulo 3. - _Ralf Stephan_, Mar 27 2015

%F a(n) = a(n-3) for n > 2. - _Wesley Ivan Hurt_, Jul 02 2016

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

%F a(n) = H(2*n, 1, 1/2) for n > 0 where H(n, a, b) = hypergeom([a - n/2, b - n/2], [1 - n], 4). - _Peter Luschny_, Sep 03 2019

%F Euler transform of length 3 sequence [-1, 0, 1]. - _Michael Somos_, Nov 27 2019

%F a(n) = n - 3*floor((n+1)/3). - _Wolfdieter Lang_, Oct 07 2021

%e G.f. = x - x^2 + x^4 - x^5 + x^7 - x^8 + x^10 - x^11 + ... - _Michael Somos_, Nov 27 2019

%p ch:=n-> if n mod 3 = 0 then 0; elif n mod 3 = 1 then 1; else -1; fi;

%p seq(op([0, 1, -1]), n=1..50); # _Wesley Ivan Hurt_, Jul 02 2016

%t Table[JacobiSymbol[n, 3], {n, 0, 99}] (* _Alonso del Arte_, Feb 06 2013 *)

%t Table[KroneckerSymbol[-3, n], {n, 0, 99}] (* _Wolfdieter Lang_, May 30 2013 *)

%t PadRight[{}, 100, {0, 1, -1}] (* _Wesley Ivan Hurt_, Jul 02 2016 *)

%t a[ n_] := {1, -1, 0}[[Mod[n, 3, 1]]]; (* _Michael Somos_, Nov 27 2019 *)

%o (Sage)

%o def A102283():

%o x, y = 0, -1

%o while True:

%o yield -x

%o x, y = y, -x -y

%o a = A102283(); [next(a) for i in range(40)] # _Peter Luschny_, Jul 11 2013

%o (Magma) &cat [[0, 1, -1]^^30]; // _Wesley Ivan Hurt_, Jul 02 2016

%o (PARI) a(n)=([0,1; -1,-1]^n*[0;1])[1,1] \\ _Charles R Greathouse IV_, Jan 14 2017

%o (PARI) {a(n) = [0, 1, -1][n%3 + 1]}; /* _Michael Somos_, Nov 27 2019 */

%o (Python)

%o def A102283(n): return (0,1,-1)[n%3] # _Chai Wah Wu_, Sep 16 2023

%Y Cf. A011655, A049347, A073010, A086724, A129404, A002324 (Mobius transform).

%K sign,easy,mult

%O 0,1

%A _N. J. A. Sloane_, Nov 02 2008

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 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)