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!)
A348676 Triangle read by rows, T(n, k) = 2^(n - HammingWeight(k)), for 0 <= k <= n. 4
1, 2, 1, 4, 2, 2, 8, 4, 4, 2, 16, 8, 8, 4, 8, 32, 16, 16, 8, 16, 8, 64, 32, 32, 16, 32, 16, 16, 128, 64, 64, 32, 64, 32, 32, 16, 256, 128, 128, 64, 128, 64, 64, 32, 128, 512, 256, 256, 128, 256, 128, 128, 64, 256, 128, 1024, 512, 512, 256, 512, 256, 256, 128, 512, 256, 256 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
Triangle starts:
[0] 1;
[1] 2, 1;
[2] 4, 2, 2;
[3] 8, 4, 4, 2;
[4] 16, 8, 8, 4, 8;
[5] 32, 16, 16, 8, 16, 8;
[6] 64, 32, 32, 16, 32, 16, 16;
[7] 128, 64, 64, 32, 64, 32, 32, 16;
[8] 256, 128, 128, 64, 128, 64, 64, 32, 128;
[9] 512, 256, 256, 128, 256, 128, 128, 64, 256, 128;
MAPLE
HammingWeight := n -> add(i, i = convert(n, base, 2)):
A348676 := (n, k) -> 2^(n - HammingWeight(k)):
seq(seq(A348676(n, k), k = 0..n), n = 0..10);
MATHEMATICA
Table[2^(n - DigitCount[k, 2, 1]), {n, 0, 10}, {k, 0, n}] // Flatten (* Amiram Eldar, Oct 30 2021 *)
CROSSREFS
Cf. A000120, A000079, A060818, A054243 (row gcd).
Sequence in context: A094571 A316477 A104733 * A201703 A153281 A338654
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Oct 29 2021
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 16 10:08 EDT 2024. Contains 371698 sequences. (Running on oeis4.)