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!)
A306901 Sum over all partitions of n of the bitwise AND of the parts. 6
0, 1, 3, 4, 8, 9, 14, 13, 24, 28, 36, 38, 55, 54, 68, 75, 106, 120, 154, 168, 208, 228, 269, 298, 374, 404, 475, 530, 618, 682, 808, 896, 1080, 1220, 1410, 1581, 1828, 2022, 2322, 2598, 2963, 3278, 3732, 4128, 4684, 5218, 5888, 6550, 7418, 8192, 9198, 10187 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Wikipedia, Identity element
Wikipedia, Truth table
MAPLE
b:= proc(n, i, r) option remember; `if`(i<1, 0, (t->
`if`(i<n, b(n-i, min(i, n-i), t), 0)+
`if`(i=n, t, 0)+b(n, i-1, r))(Bits[And](i, r)))
end:
a:= n-> b(n$2, 2^ilog2(2*n)-1):
seq(a(n), n=0..55);
CROSSREFS
Sequence in context: A219658 A047204 A050035 * A355477 A341578 A368641
KEYWORD
nonn,base
AUTHOR
Alois P. Heinz, Mar 15 2019
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 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)