login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A011846
a(n) = floor( binomial(n,9)/10 ).
2
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 22, 71, 200, 500, 1144, 2431, 4862, 9237, 16796, 29393, 49742, 81719, 130750, 204297, 312455, 468682, 690690, 1001500, 1430715, 2016007, 2804880, 3856710, 5245125, 7060746
OFFSET
0,12
LINKS
FORMULA
a(n) = floor( binomial(n+1,10)/(n+1)). [Gary Detlefs, Nov 23 2011]
MAPLE
A011846:=n->floor(binomial(n, 9)/10): seq(A011846(n), n=0..60); # Wesley Ivan Hurt, Apr 10 2017
MATHEMATICA
Table[Floor[Binomial[n, 9]/10], {n, 0, 50}] (* Vincenzo Librandi, Apr 11 2017 *)
PROG
(Magma) [Floor(Binomial(n, 9)/10): n in [0..50]]; // Vincenzo Librandi, Apr 11 2017
CROSSREFS
A column of triangle A011847.
Sequence in context: A032168 A246211 A000345 * A241694 A220733 A338707
KEYWORD
nonn,easy
STATUS
approved