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

A084628
a(n) = floor(binomial(n+7,7)/binomial(n+3,3)).
6
1, 2, 3, 6, 9, 14, 20, 28, 39, 52, 68, 87, 110, 138, 171, 209, 253, 303, 361, 427, 501, 585, 678, 783, 899, 1027, 1169, 1325, 1496, 1683, 1887, 2109, 2350, 2611, 2893, 3198, 3526, 3878, 4257, 4662, 5096, 5559, 6053, 6580, 7140, 7735, 8366, 9035, 9744, 10494
OFFSET
0,2
LINKS
FORMULA
a(n) = 1 + floor( n*(n+11)*(n^2 +11*n +58)/840 ).
a(n) = floor(binomial(n+7, 4)/35). - G. C. Greubel, Mar 24 2023
MATHEMATICA
Table[Floor[Binomial[n+7, 7]/Binomial[n+3, 3]], {n, 0, 50}] (* Harvey P. Dale, Jan 27 2011 *)
Floor[Binomial[Range[7, 77], 4]/35] (* G. C. Greubel, Mar 24 2023 *)
PROG
(Magma) [Floor(Binomial(n+7, 4)/35): n in [0..70]]; // G. C. Greubel, Mar 24 2023
(SageMath) [binomial(n+7, 4)//35 for n in range(71)] # G. C. Greubel, Mar 24 2023
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jun 01 2003
STATUS
approved