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!)
A100735 Inverse modulo 2 binomial transform of 2^n. 4
1, 1, 3, 3, 15, 15, 45, 45, 255, 255, 765, 765, 3825, 3825, 11475, 11475, 65535, 65535, 196605, 196605, 983025, 983025, 2949075, 2949075, 16711425, 16711425, 50134275, 50134275, 250671375, 250671375, 752014125, 752014125, 4294967295, 4294967295 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The modulo 2 binomial transform and its inverse are defined by
B(n) = Sum_{k=0..n} (binomial(n,k) mod 2)*A(k),
A(n) = Sum_{k=0..n} (-1)^A010060(n-k)*(binomial(n, k) mod 2)*B(k). - N. J. A. Sloane, Dec 20 2019
2^n may be retrieved as Sum_{k=0..n} mod(binomial(n,k),2)*a(k).
LINKS
FORMULA
a(n) = Sum_{k=0..n} (-1)^A010060(n-k)*mod(binomial(n, k), 2)*2^k.
MATHEMATICA
Table[Sum[(-1)^ThueMorse[n - k]*Mod[Binomial[n, k], 2]*2^k, {k, 0, n}], {n, 0, 50}] (* G. C. Greubel, Apr 17 2018 *)
PROG
(PARI) for(n=0, 50, print1(abs(sum(k=0, n, (-1)^(hammingweight(k)%2)* lift(Mod(binomial(n, k), 2))*2^k)), ", ")) \\ G. C. Greubel, Apr 17 2018
CROSSREFS
Sequence in context: A333862 A172087 A086116 * A362531 A129356 A290344
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Dec 06 2004
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)