cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-5 of 5 results.

A306901 Sum over all partitions of n of the bitwise AND of the parts.

Original entry on oeis.org

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
Offset: 0

Views

Author

Alois P. Heinz, Mar 15 2019

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i, r) option remember; `if`(i<1, 0, (t->
          `if`(i b(n$2, 2^ilog2(2*n)-1):
    seq(a(n), n=0..55);

A306902 Sum over all partitions of n of the bitwise OR of the parts.

Original entry on oeis.org

0, 1, 3, 7, 13, 23, 40, 67, 103, 156, 231, 340, 486, 689, 964, 1352, 1845, 2507, 3363, 4500, 5937, 7814, 10174, 13247, 17064, 21930, 27957, 35616, 45009, 56805, 71252, 89320, 111282, 138479, 171421, 212021, 260974, 320837, 392753, 480395, 585239, 712163, 863536
Offset: 0

Views

Author

Alois P. Heinz, Mar 15 2019

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i, r) option remember; `if`(i<1, 0, (t->
          `if`(i b(n$2, 0):
    seq(a(n), n=0..45);

A306884 Sum over all partitions of n of the power tower evaluation x^y^...^z, where x, y, ..., z are the parts in (weakly) decreasing order.

Original entry on oeis.org

1, 1, 3, 6, 14, 28, 93, 270, 86170, 7625640881546
Offset: 0

Views

Author

Alois P. Heinz, Mar 15 2019

Keywords

Comments

a(10) = 200352993...611306920 has 19729 decimal digits.

Examples

			a(0) = 1 because the empty partition () has no parts, the exponentiation operator ^ is right-associative, and 1 is the right identity of exponentiation.
a(6) = 1^1^1^1^1^1 + 2^1^1^1^1 + 2^2^1^1 + 2^2^2 + 3^1^1^1 + 3^2^1 + 3^3 + 4^1^1 + 4^2 + 5^1 + 6 = 1 + 2 + 4 + 16 + 3 + 9 + 27 + 4 + 16 + 5 + 6 = 93.
		

Crossrefs

Programs

  • Maple
    f:= l-> `if`(l=[], 1, l[1]^f(subsop(1=(), l))):
    a:= n-> add(f(sort(l, `>`)), l=combinat[partition](n)):
    seq(a(n), n=0..9);

A306895 Sum over all partitions of n of the power tower evaluation x^y^...^z, where x, y, ..., z are the parts in (weakly) increasing order.

Original entry on oeis.org

1, 1, 3, 5, 11, 18, 72, 387, 134349386, 115792089237316195423570985008687907853269984665640566457309223244801371506483
Offset: 0

Views

Author

Alois P. Heinz, Mar 15 2019

Keywords

Comments

a(10) has 40403562 decimal digits.

Examples

			a(0) = 1 because the empty partition () has no parts, the exponentiation operator ^ is right-associative, and 1 is the right identity of exponentiation.
a(6) = 1^1^1^1^1^1 + 1^1^1^1^2 + 1^1^2^2 + 2^2^2 + 1^1^1^3 + 1^2^3 + 3^3 + 1^1^4 + 2^4 + 1^5 + 6 = 1 + 1 + 1 + 16 + 1 + 1 + 27 + 1 + 16 + 1 + 6 = 72.
		

Crossrefs

Programs

  • Maple
    f:= l-> `if`(l=[], 1, l[1]^f(subsop(1=(), l))):
    a:= n-> add(f(sort(l, `<`)), l=combinat[partition](n)):
    seq(a(n), n=0..9);

A306925 Sum over all partitions of n into distinct parts of the bitwise XOR of the parts.

Original entry on oeis.org

0, 1, 2, 6, 6, 11, 16, 35, 36, 46, 50, 84, 94, 130, 158, 285, 338, 424, 460, 616, 672, 810, 816, 1162, 1346, 1680, 1754, 2308, 2562, 3164, 3288, 4486, 5306, 6838, 7522, 9627, 11006, 13496, 14200, 17462, 19682, 24036, 25650, 30842, 33884, 40302, 41644, 48896
Offset: 0

Views

Author

Alois P. Heinz, Mar 16 2019

Keywords

Crossrefs

Programs

  • Maple
    b:= proc(n, i, r) option remember; `if`(i*(i+1)/2 `if`(i b(n$2, 0):
    seq(a(n), n=0..51);

Formula

a(n) is odd <=> n in { A067589 }.
a(n) is odd <=> A067588(n) is odd.
Showing 1-5 of 5 results.