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.

A327767 Period 2: repeat [1, -2].

This page as a plain text file.
%I A327767 #25 Apr 19 2023 00:35:14
%S A327767 1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,
%T A327767 -2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,
%U A327767 1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2,1,-2
%N A327767 Period 2: repeat [1, -2].
%H A327767 Michael Somos, <a href="http://grail.eecs.csuohio.edu/~somos/rfmc.html">Rational Function Multiplicative Coefficients</a>.
%H A327767 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (0,1).
%F A327767 G.f.: x * (1 - 2*x) / (1 - x^2) = x / (1 + 2*x / (1 - 3*x / (2 - x))).
%F A327767 E.g.f.: (exp(x) - 1)*(3/exp(x) - 1)/2.
%F A327767 a(n) is multiplicative with a(2^e) = -2 if e>0, a(p^e) = 1 otherwise.
%F A327767 Moebius transform is length 2 sequence [1, -3].
%F A327767 a(n) = -(1 + 3*(-1)^n)/2 if n>=1.
%F A327767 a(2*n) = -2, a(2*n + 1) = 1, a(0) = 0.
%F A327767 a(n) = -(-1)^n * A134451(n) for all n in Z.
%F A327767 a(n) = a(n+2) = -(-1)^n * A000034(n-1) = -A168361(n+1) for n>=1.
%F A327767 Dirichlet g.f.: zeta(s)*(1-3/2^s). - _Amiram Eldar_, Jan 03 2023
%e A327767 G.f. = x - 2*x^2 + x^3 - 2*x^4 + x^5 - 2*x^6 + x^7 - 2*x^8 + ...
%t A327767 a[ n_] := If[ n < 1, 0, -2 + 3 Mod[n, 2]];
%t A327767 a[ n_] := Which[ n < 1, 0, OddQ[n], 1, True, -2];
%t A327767 a[ n_] := SeriesCoefficient[ (x - 2*x^2) / (1 - x^2), {x, 0, n}];
%t A327767 PadRight[{}, 100, {1, -2}] (* _Vincenzo Librandi_, Feb 29 2020 *)
%o A327767 (PARI) {a(n) = if( n<1, 0, -(1 + 3*(-1)^n)/2)};
%o A327767 (PARI) {a(n) = if( n<1, 0, -2 + 3*(n%2))};
%o A327767 (PARI) {a(n) = if( n<1, 0, [-2, 1][n%2 + 1])};
%o A327767 (PARI) {a(n) = if( n<0, 0, polcoeff( (x - 2*x^2) / (1 - x^2) + x * O(x^n), n))};
%o A327767 (Magma) &cat [[1, -2]^^50]; // _Vincenzo Librandi_, Feb 29 2020
%Y A327767 Cf. A000034, A040001, A134451, A168361, A280193.
%K A327767 sign,mult,easy
%O A327767 1,2
%A A327767 _Michael Somos_, Sep 24 2019