OFFSET
1,5
COMMENTS
"DHK[ n ](2n-1)" (bracelet, identity, unlabeled, n parts, evaluated at 2n) transform of 1,1,1,1,...
For n > 2, half the number of asymmetric Dyck (n-1)-paths. E.g., the two asymmetric 3-paths are UDUUDD and UUDDUD, so a(4) = 2/2 = 1. - David Scambler, Aug 23 2012
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
T. D. Noe, Table of n, a(n) for n = 1..200
C. G. Bower, Transforms (2).
Z. M. Himwich and N. A. Rosenberg, Roadblocked monotonic paths and the enumeration of coalescent histories for non-matching caterpillar gene trees and species trees, arXiv:1901.04465 [qbio.PE], 2019; Adv. Appl. Math. 113 (2020), 101939. (Table 1 shows twice this sequence.)
P. K. Stockmeyer, The charm bracelet problem and its applications, pp. 339-349 of Graphs and Combinatorics (Washington, Jun 1973), Ed. by R. A. Bari and F. Harary. Lect. Notes Math., Vol. 406. Springer-Verlag, 1974.
P. J. Stockmeyer, The charm bracelet problem and its applications, pp. 339-349 of Graphs and Combinatorics (Washington, Jun 1973), Ed. by R. A. Bari and F. Harary. Lect. Notes Math., Vol. 406. Springer-Verlag, 1974. [Scanned annotated and corrected copy]
FORMULA
Let c(x) = (1-sqrt(1-4*x))/(2*x) = g.f. for Catalan numbers (A000108), let d(x) = x/(1-x-x^2*c(x^2)) = g.f. for A001405. Then g.f. for the asymmetric planted projective plane trees sequence is (x*c(x)-d(x))/2 (the initial terms from this version are slightly different).
a(n+1) = (CatalanNumber(n) - binomial(n,floor(n/2)))/2 (for n>=3). - David Callan, Jul 14 2006
EXAMPLE
For the asymmetric planted projective plane trees sequence we have a(5) = 4, a(6) = 16, a(7) = 56, ...
MATHEMATICA
a[1] = a[2] = 1; a[n_] := (CatalanNumber[n-1] - Binomial[n-1, Floor[(n-1)/2]])/2; Table[ a[n], {n, 1, 26}] (* Jean-François Alcover, Mar 09 2012, after David Callan *)
PROG
(Magma) [1, 1] cat [(Catalan(n) - Binomial(n, Floor(n/2)))/2: n in [2..40]]; // Vincenzo Librandi, Feb 16 2015
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
EXTENSIONS
Alternative description and more terms from Christian G. Bower
STATUS
approved