The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A188064 Partial sums of wt(n)! where wt(n) is the Hamming weight of n (A000120). 1
1, 2, 3, 5, 6, 8, 10, 16, 17, 19, 21, 27, 29, 35, 41, 65, 66, 68, 70, 76, 78, 84, 90, 114, 116, 122, 128, 152, 158, 182, 206, 326, 327, 329, 331, 337, 339, 345, 351, 375, 377, 383, 389, 413, 419, 443, 467, 587, 589, 595, 601, 625, 631, 655, 679, 799, 805, 829, 853, 973, 997, 1117 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Partial sums of A093659, partial sums of the factorials of A000120.
A000522 is a subsequence: A000522(n)=a(2^n-1).
LINKS
FORMULA
a(n)=sum(k=0,n,wt(k)!) where wt(k) is the Hamming weight of k.
MATHEMATICA
FoldList[Plus, 0!, Table[(Plus @@ IntegerDigits[n, 2])!, {n, 1, 70}]] (* From Olivier Gérard, Mar 23 2011 *)
Accumulate[DigitCount[Range[0, 70], 2, 1]!] (* Harvey P. Dale, Jun 26 2013 *)
PROG
(PARI)
bitcount(x)=
{ /* Return Hamming weight of x */
local(p); p = 0;
while ( x, p+=bitand(x, 1); x>>=1; );
return( p );
}
N=65; /* that many terms */
f=vector(N, n, bitcount(n-1)!); /* factorials of Hamming weights */
s=vector(N); s[1]=f[1]; /* for cumulative sums */
for (n=2, N, s[n]=s[n-1]+f[n]); /* sum up */
s /* show terms */ /* Joerg Arndt, Mar 20 2011 */
CROSSREFS
Sequence in context: A252482 A348868 A124145 * A104424 A028806 A351807
KEYWORD
nonn
AUTHOR
Joerg Arndt, Mar 20 2011
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 June 1 18:31 EDT 2024. Contains 373027 sequences. (Running on oeis4.)