OFFSET
1,2
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = floor(1/2 n (7 + n) (46 + 13 n + n^2)/(144 + 41 n + 3 n^2)). - Ivan Neretin, May 17 2018
EXAMPLE
For n=2, the 3rd elementary symmetric function of (3,4,5,6) is 3*4*5 + 3*4*6 + 3*5*6 + 4*5*6 = 342, and the 2nd elementary symmetric function of (3,4,5,6) is 3*4 + 3*5 + 3*6 + 4*5 + 4*6 + 5*6 = 119. So 342/119 = 2.8739..., and a(2) = 2. - Michael B. Porter, May 05 2018
MATHEMATICA
Table[Floor[1/2 x (7 + x) (46 + 13 x + x^2)/(144 + 41 x + 3 x^2)], {x, 43}] (* Ivan Neretin, May 02 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved