OFFSET
0,3
COMMENTS
This sequence (with offset 0) equals the probable number of inequivalent classes of permutations acting on an n-party state under the trace norm in the context of permutation criteria for separability. - Lieven Clarisse, Apr 28 2006
Number of connected components of an undirected graph where the nodes are the n-subsets of {1,...,2n} and an edge (A,B) appears if B = {1,...,2n} \ A or B = {2n + 1 - i: i in A}. See Mathematics Magazine link. - Rob Pratt, Aug 10 2015
Number of distinct staircase walks connecting opposite corners of a square grid of side n > 1. - Christian Barrientos, Nov 25 2018
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..1000
Eddie Cheng and Jerrold W. Grossman, Problem 1959, Mathematics Magazine 87 (Dec. 2014), p. 396.
L. Clarisse and P. Wocjan, On independent permutation separability criteria, Quant. Inf. Comp. 6 277-288, 2006, arXiv:quant-ph/0504160, 2005.
FORMULA
a(n) = (1/4)*(2^n + C(2*n, n) + 2*C(n-1, (1/2)*(n-2))*((n+1) mod 2)).
MATHEMATICA
Table[ 1/4 (2^n + Binomial[ 2 n, n ] + 2 Binomial[ -1 + n, 1/2 (-2 + n) ]*Mod[ 1 + n, 2 ]), {n, 0, 24} ]
PROG
(PARI) a(n) = (1/4)*(2^n + binomial(2*n, n) + if ((n+1)%2, 2*binomial(n-1, (1/2)*(n-2)))); \\ Michel Marcus, Nov 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved