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”).

A051053
a(n) = binomial(n, floor(n/6)).
7
1, 1, 1, 1, 1, 1, 6, 7, 8, 9, 10, 11, 66, 78, 91, 105, 120, 136, 816, 969, 1140, 1330, 1540, 1771, 10626, 12650, 14950, 17550, 20475, 23751, 142506, 169911, 201376, 237336, 278256, 324632, 1947792, 2324784, 2760681, 3262623, 3838380, 4496388
OFFSET
0,7
LINKS
FORMULA
From Robert Israel, Mar 11 2018: (Start)
Let n = 6*k+j, 0 <= j <= 5.
a(n+6)*(k+1)*Product_{m=1..5} (5*k+j+m) = a(n)*Product_{m=1..6} (6*k+j+m).
a(n) ~ sqrt(3/(5*Pi*k))*(6/5)^j*(6^6/5^5)^k as k -> infinity. (End)
MAPLE
seq(binomial(n, floor(n/6)), n=0..60); # Robert Israel, Mar 11 2018
MATHEMATICA
Table[Binomial[n, Floor[n/6]], {n, 0, 50}] (* Harvey P. Dale, Dec 18 2013 *)
CROSSREFS
KEYWORD
nonn
STATUS
approved