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!)
A330033 a(n) = Kronecker(n, 5) * (-1)^floor(n/5). 0
0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1, 1, 1, -1, 0, 1, -1, -1, 1, 0, -1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This is a strong elliptic divisibility sequence t_n as given in [Kimberling, p. 16] where x = y = z = -1.
LINKS
Clark Kimberling, Strong divisibility sequences and some conjectures, Fib. Quart., 17 (1979), 13-17.
FORMULA
Euler transform of length 10 sequence [-1, -1, 0, 0, -1, 0, 0, 0, 0, 1].
G.f.: (x - 2*x^2 + x^3) / (1 - x + x^2 - x^3 + x^4) = x * (1 - x) * (1 - x^2) / (1 + x^5).
a(n) = -a(n+5) = -a(-n) = -(-1)^n*A244895(n) = A080891(n) * A330025(n), |a(n)| = A011558(n) for all n in Z.
a(n) = -A292301(n-1). a(5*n) = 0.
0 = a(n)*a(n-4) - a(n-1)*a(n-3) - a(n-2)*a(n-2) for all n in Z.
0 = a(n)*a(n+5) + a(n+1)*a(n+4) - a(n+2)*a(n+3) for all n in Z.
EXAMPLE
G.f. = x - x^2 - x^3 + x^4 - x^6 + x^7 + x^8 - x^9 + x^11 - x^12 + ...
MATHEMATICA
a[ n_] := {1, -1, -1, 1, 0}[[Mod[n, 5, 1]]] (-1)^Quotient[n, 5];
a[ n_] := JacobiSymbol[n, 5] (-1)^Quotient[n, 5];
PROG
(PARI) {a(n) = [0, 1, -1, -1, 1][n%5 + 1] * (-1)^(n\5)};
(PARI) {a(n) = kronecker(n, 5) * (-1)^(n\5)};
(Magma) [KroneckerSymbol(n, 5) * (-1)^Floor(n/5):n in [0..76]]; // Marius A. Burtea, Nov 28 2019
CROSSREFS
Sequence in context: A225181 A244895 A330025 * A332828 A100047 A226162
KEYWORD
sign,easy
AUTHOR
Michael Somos, Nov 27 2019
STATUS
approved

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 June 25 17:15 EDT 2024. Contains 373706 sequences. (Running on oeis4.)