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!)
A095718 a(n) = Sum_{k=0..n} floor(binomial(n,k)/(k+1)). 3
1, 2, 3, 6, 9, 18, 30, 56, 101, 186, 339, 630, 1167, 2182, 4092, 7710, 14561, 27594, 52425, 99862, 190647, 364722, 699045, 1342176, 2581107, 4971024, 9586975, 18512790, 35791386, 69273666, 134217720, 260301046, 505290269, 981706808 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums of A011847.
LINKS
FORMULA
a(n) = Sum_{k=0..n} floor(binomial(n,k)/(k+1)).
From Robert Israel, May 07 2018: (Start)
(2^(n+1)-1)/(n+1) >= a(n) >= (2^(n+1)-1)/(n+1) - n.
It appears that a(n) = (2^(n+1)-2)/(n+1) if n+1 is prime. (End)
MAPLE
a:=n->add(floor(combinat[numbcomb](n, k)/(k+1)), k=0..n);
PROG
(PARI) a(n) = sum(k=0, n, binomial(n, k)\(k+1)); \\ Michel Marcus, May 08 2018
CROSSREFS
Sequence in context: A018499 A107847 A059966 * A038751 A218543 A266925
KEYWORD
nonn
AUTHOR
Mike Zabrocki, Jul 08 2004
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)