OFFSET
2,1
COMMENTS
Remmel (2014) asks for a formula.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 2..500
Jeffrey B. Remmel, Consecutive Up-down Patterns in Up-down Permutations, Electron. J. Combin., 21 (2014), #P3.2.
FORMULA
a(n) = A234950(n, 2).
MATHEMATICA
Table[Sum[Binomial[s, 2] Binomial[n+s, n] (n - s + 1) / (n + 1), {s, 2, n}], {n, 2, 15}] (* Vincenzo Librandi, Apr 06 2018 *)
PROG
(PARI) a(n) = sum(s=2, n, binomial(s, 2)*binomial(n+s, n)*(n-s+1)/(n+1)); \\ Michel Marcus, Apr 06 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 12 2014
EXTENSIONS
More terms from Michel Marcus, Apr 06 2018
STATUS
approved