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.

A151788 Partial sums of A151787.

Original entry on oeis.org

1, 4, 7, 13, 16, 22, 28, 40, 43, 49, 55, 67, 73, 85, 97, 121, 124, 130, 136, 148, 154, 166, 178, 202, 208, 220, 232, 256, 268, 292, 316, 364, 367, 373, 379, 391, 397, 409, 421, 445, 451, 463, 475, 499, 511, 535, 559, 607, 613, 625, 637, 661, 673, 697, 721, 769, 781, 805
Offset: 1

Views

Author

N. J. A. Sloane, Jun 25 2009

Keywords

Crossrefs

Cf. A151787.

Programs

  • Maple
    wt:= n -> convert(convert(n,base,2),`+`):
    ListTools:-PartialSums([1,seq(3*2^(wt(n-1)-1),n=2..100)]); # Robert Israel, Feb 27 2018
  • Mathematica
    b[n_] := If[n == 1, 1, 3*2^(Total[IntegerDigits[n-1, 2]]-1)];
    Array[b, 100] // Accumulate (* Jean-François Alcover, Mar 27 2019 *)
  • PARI
    b(n) = if (n==1, 1, 3*2^(hammingweight(n-1)-1));
    a(n) = sum(k=1, n, b(k)); \\ Michel Marcus, Feb 27 2018

Formula

G.f. g(x) satisfies g(x) = (2+1/x)*(1+x)*g(x^2) + x^2/(1-x). - Robert Israel, Feb 27 2018