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!)
A051165 Sequence is defined by property that binomial transform of (a0,a1,a2,a3,...) = (a0,a0,a1,a1,a2,a2,a3,a3,...). 5
1, 0, -1, 2, -4, 8, -12, 8, 15, -56, 81, -26, -130, 208, 306, -2060, 4796, -5120, -6140, 43320, -113768, 182720, -111768, -395696, 1725172, -3922016, 5614348, -2289912, -14957416, 56700032, -121684568, 164735504, -47657969, -491084768, 1740799985, -3598600386, 4619098604 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
N. J. A. Sloane, Transforms
MAPLE
a:= proc(n) option remember; add(`if`(k<2, 1,
a(iquo(k, 2)))*(-1)^(n-k)*binomial(n, k), k=0..n)
end:
seq(a(n), n=0..45); # Alois P. Heinz, Jul 08 2015
MATHEMATICA
a[n_] := a[n] = Sum[If[k<2, 1, a[Quotient[k, 2]]]*(-1)^(n-k)*Binomial[n, k], {k, 0, n}];
Table[a[n], {n, 0, 45}] (* Jean-François Alcover, Jun 04 2018, from Maple *)
CROSSREFS
Sequence in context: A349228 A337181 A357806 * A009664 A009507 A064657
KEYWORD
easy,sign,eigen
AUTHOR
EXTENSIONS
More terms from Vladeta Jovovic, Jul 26 2002
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 22 18:14 EDT 2024. Contains 372758 sequences. (Running on oeis4.)