[go: up one dir, main page]

login
A059938
Sum of binary numbers with n 1's and two (non-leading) 0's.
1
0, 4, 31, 141, 506, 1590, 4593, 12523, 32740, 82908, 204755, 495561, 1179582, 2768818, 6422437, 14745495, 33554312, 75759480, 169869159, 378535765, 838860610, 1849687854, 4060086041, 8875147011, 19327352556, 41943039700
OFFSET
0,2
FORMULA
a(n) = n^2*2^(n+1) - n*(n-1)/2 = A059937(n) - A059672(n) = A059937(n-1) + 2^(n+1)*n*(n+1)/2.
G.f.: x*(8*x^3-6*x^2-5*x+4) / ((x-1)^3*(2*x-1)^3). - Colin Barker, Sep 14 2014
EXAMPLE
a(2) = 1100_2 + 1010_2 + 1001_2 = 12 + 10 + 9 = 31.
PROG
(PARI) concat(0, Vec(x*(8*x^3-6*x^2-5*x+4)/((x-1)^3*(2*x-1)^3) + O(x^100))) \\ Colin Barker, Sep 14 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, Feb 13 2001
STATUS
approved