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.

A192054 Let u, v be binary vectors of length n, let f(u,v) be length of longest carry propagation when we form the binary sum u+v; then a(n) = Sum_{u,v} f(u,v).

Original entry on oeis.org

0, 1, 9, 57, 307, 1517, 7103, 32117, 141711, 614429, 2629495, 11141893, 46846671, 195760429, 813970695, 3370693013, 13910890431, 57246635581, 235011903671, 962772769829, 3937069121647, 16074491903309, 65538899349479, 266887332403125, 1085630844057375, 4411756408116573, 17912600251244567, 72670852531322949, 294610539143446735
Offset: 0

Views

Author

N. J. A. Sloane, Jun 21 2011

Keywords

Comments

There are 2^{2n} choices for (u,v).
A carry propagation is started if u_i = v_i = 1, and is extended if one bit of either u or v is 0 and the other is 1.
The longest carry propagation is n, for instance if u = 111...11, v = 000...01. See A050602 for further examples.

Programs

  • Maple
    C:=proc(n) local t0,j,k;
    t0:=0;
    for k from 1 to n+1 do
      for j from 1 to floor(n/k) do
    if (j*(k-1) <= n) and (j <= n-j*(k-1)) then
      t0:=t0+binomial(n-j*(k-1),j)*(-1)^(j+1)/2^((k+1)*j);
      fi;
      od;
    od:
    RETURN(4^n*t0);
    end;

Formula

Pippenger's formula is given in the Maple code.