The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A084633 Inverse binomial transform of repeated odd numbers. 6
1, 0, 2, -4, 8, -16, 32, -64, 128, -256, 512, -1024, 2048, -4096, 8192, -16384, 32768, -65536, 131072, -262144, 524288, -1048576, 2097152, -4194304, 8388608, -16777216, 33554432, -67108864, 134217728, -268435456, 536870912, -1073741824, 2147483648, -4294967296 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (0^n + (-2)^n)/2, for n > 1, with a(1) = 0.
abs(a(n)) = A034008(n).
From Colin Barker, Jan 06 2013: (Start)
a(n) = (-1)^n * 2^(n-1) for n > 1.
a(n) = -2*a(n-1) for n > 2.
G.f.: (1 +2*x +2*x^2) / (1+2*x). (End)
E.g.f.: (1 + 2*x + exp(-2*x))/2. - Alejandro J. Becerra Jr., Jan 29 2021
MATHEMATICA
Join[{1, 0}, NestList[-2#&, 2, 40]] (* Harvey P. Dale, Dec 28 2015 *)
PROG
(Magma) [n le 1 select 1-n else (0^n + (-2)^n)/2: n in [0..40]]; // G. C. Greubel, Mar 18 2023
(SageMath) [(0^n + (-2)^n)/2 + int(n==1) for n in range(41)] # G. C. Greubel, Mar 18 2023
CROSSREFS
Cf. A034008.
Sequence in context: A034008 A123344 A141531 * A000079 A011782 A120617
KEYWORD
easy,sign
AUTHOR
Paul Barry, Jun 05 2003
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 May 14 17:50 EDT 2024. Contains 372533 sequences. (Running on oeis4.)