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!)
A308812 a(n) = Sum_{k=1..n} binomial(n,k) * floor(n/k). 3
1, 5, 13, 33, 61, 143, 246, 521, 985, 1995, 3499, 7923, 14028, 28642, 55603, 115369, 210665, 455399, 838338, 1755983, 3383652, 6974159, 13034492, 28011611, 52475486, 108821068, 210050941, 436273458, 824191369, 1744975533, 3301974301, 6867107913, 13250454241 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = [x^n] (1/(1 - x)) * Sum_{k=1..n} binomial(n,k) * x^k/(1 - x^k).
a(n) = Sum_{k=1..n} Sum_{d|k} binomial(n,d).
a(n) ~ 3 * 2^(n-1). - Vaclav Kotesovec, May 28 2021
MAPLE
f:= proc(n) local k; add(binomial(n, k)*floor(n/k), k=1..n) end proc:
map(f, [$1..100]); # Robert Israel, Aug 23 2019
MATHEMATICA
Table[Sum[Binomial[n, k] Floor[n/k] , {k, 1, n}], {n, 1, 33}]
Table[SeriesCoefficient[1/(1 - x) Sum[Binomial[n, k] x^k/(1 - x^k), {k, 1, n}], {x, 0, n}], {n, 1, 33}]
Table[Sum[Sum[Binomial[n, d], {d, Divisors[k]}], {k, 1, n}], {n, 1, 33}]
CROSSREFS
Cf. A056045.
Sequence in context: A272161 A272828 A370754 * A321124 A001981 A141025
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 22 2019
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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)