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!)
A280560 a(n) = (-1)^n * 2 if n!=0, with a(0) = 1. 7
1, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2, -2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Euler transform of length 2 sequence [-2, 1].
Moebius transform is length 2 sequence [-2, 4].
a(n) = -2*A033999(n) if n!=0.
G.f.: (1 - x) / (1 + x) = 1 / (1 + 2*x / (1 - x)) = 1 - 2*x / (1 + x).
E.g.f.: 2*exp(-x) - 1.
a(n) = a(-n) for all n in Z.
a(n) = A084100(2*n) = A084100(2*n + 1), if n>=0.
a(n) = (-1)^n * A040000(n).
a(2*n) = A040000(n).
Convolution inverse is A040000.
EXAMPLE
G.f. = 1 - 2*x + 2*x^2 - 2*x^3 + 2*x^4 - 2*x^5 + 2*x^6 - 2*x^7 + 2*x^8 - 2*x^9 + ...
MATHEMATICA
a[ n_] := (-1)^n (2 - Boole[n == 0]);
PadRight[{1}, 120, {2, -2}] (* Harvey P. Dale, Jun 04 2019 *)
PROG
(PARI) {a(n) = (-1)^n * if(n, 2, 1)};
(Magma) [n eq 0 select 1 else 2*(-1)^n: n in [0..75]]; // G. C. Greubel, Jul 29 2018; Mar 28 2024
(SageMath) [2*(-1)^n -int(n==0) for n in range(76)] # G. C. Greubel, Mar 28 2024
CROSSREFS
Sequence in context: A262438 A044931 A178487 * A044932 A211669 A065687
KEYWORD
sign,easy
AUTHOR
Michael Somos, Jan 05 2017
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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)