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!)
A151788 Partial sums of A151787. 5
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Hsien-Kuei Hwang, Svante Janson, and Tsung-Hsi Tsai, Identities and periodic oscillations of divide-and-conquer recurrences splitting at half, arXiv:2210.10968 [cs.DS], 2022, p. 30.
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
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 *)
PROG
(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
CROSSREFS
Cf. A151787.
Sequence in context: A310806 A125758 A259566 * A310807 A310808 A310809
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jun 25 2009
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 23 07:57 EDT 2024. Contains 371905 sequences. (Running on oeis4.)