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.

A185252 a(n) = Sum_{k=0..ceiling(n/2)} k*binomial(n,k).

This page as a plain text file.
%I A185252 #14 Nov 17 2019 01:42:58
%S A185252 0,1,2,9,16,55,96,294,512,1467,2560,7018,12288,32630,57344,148620,
%T A185252 262144,666451,1179648,2952258,5242880,12949986,23068672,56346964,
%U A185252 100663296,243517150,436207616,1046377764,1879048192,4474004812,8053063680,19047319832,34359738368
%N A185252 a(n) = Sum_{k=0..ceiling(n/2)} k*binomial(n,k).
%H A185252 G. C. Greubel, <a href="/A185252/b185252.txt">Table of n, a(n) for n = 0..1000</a>
%F A185252 a(2*n) = A185251(2*n).
%t A185252 Table[Sum[k Binomial[n, k], {k, 0, Ceiling[n/2]}], {n, 0, 50}] (* _G. C. Greubel_, Jun 25 2017 *)
%o A185252 (PARI) a(n)=sum(k=0,(n+1)\2,k*binomial(n,k))
%K A185252 nonn,easy
%O A185252 0,3
%A A185252 _M. F. Hasler_, Jan 24 2012