login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A208355 Right edge of the triangle in A208101. 14

%I #63 Feb 06 2024 10:07:51

%S 1,1,1,2,2,5,5,14,14,42,42,132,132,429,429,1430,1430,4862,4862,16796,

%T 16796,58786,58786,208012,208012,742900,742900,2674440,2674440,

%U 9694845,9694845,35357670,35357670,129644790,129644790,477638700,477638700,1767263190

%N Right edge of the triangle in A208101.

%C Number of achiral polyominoes composed of n+1 triangular cells of the hyperbolic regular tiling with Schläfli symbol {3,oo}. A stereographic projection of this tiling on the Poincaré disk can be obtained via the Christensson link. An achiral polyomino is identical to its reflection. - _Robert A. Russell_, Jan 20 2024

%H Reinhard Zumkeller, <a href="/A208355/b208355.txt">Table of n, a(n) for n = 0..1000</a>

%H Andrei Asinowski, Cyril Banderier, and Valerie Roitner, <a href="https://lipn.univ-paris13.fr/~banderier/Papers/several_patterns.pdf">Generating functions for lattice paths with several forbidden patterns</a>, (2019).

%H Malin Christensson, <a href="http://malinc.se/m/ImageTiling.php">Make hyperbolic tilings of images</a>, web page, 2019.

%H D. Levin, L. Pudwell, M. Riehl, and A. Sandberg, <a href="http://www.etsu.edu/cas/math/pp2014/documents/talks/riehl.pdf">Pattern Avoidance on k-ary Heaps</a>, Slides of Talk, 2014.

%H Zhicong Lin, David G. L. Wang, and Tongyuan Zhao, <a href="https://arxiv.org/abs/2103.04599">A decomposition of ballot permutations, pattern avoidance and Gessel walks</a>, arXiv:2103.04599 [math.CO], 2021.

%F a(n) = A000108(floor((n+1)/2)), where A000108 = Catalan numbers.

%F a(n) = A208101(n,n).

%F a(n) = abs(A099363(n)).

%F Conjecture: -(n+3)*(n-2)*a(n) - 4*a(n-1) + 4*(n-1)^2*a(n-2) = 0. - _R. J. Mathar_, Aug 04 2015

%F From _Robert A. Russell_, Jan 19 2024: (Start)

%F a(2m) = C(2m,m)/(m+1); a(2m-1) = a(2m); a(n+2)/a(n) ~ 4.

%F a(n-1) = 2*A000207(n) - A001683(n+2) = A001683(n+2) - 2*A369314(n) = A000207(n) - A369314(n). (End)

%F G.f.: (G(z^2)+z*G(z^2)-1)/z, where G(z)=1+z*G(z)^2, the generating function for A000108. - _Robert A. Russell_, Jan 26 2024

%F G.f.: ((((1+z)*(1-sqrt(1-4*z^2)))/(2*z^2))-1)/z. - _Robert A. Russell_, Jan 28 2024

%F From _Peter Bala_, Feb 05 2024: (Start)

%F G.f.: 1/(1 + 2*x) * c(x/(1 + 2*x))^3, where c(x) = (1 - sqrt(1 - 4*x))/(2*x) is the g.f. of the Catalan numbers A000108.

%F a(n) = Sum_{k = 0..n} (-2)^(n-k)*binomial(n, k)*A000245(k+1).

%F a(n) = (-2)^n * hypergeom([-n, 3/2, 2], [1, 4], 2). (End)

%e a(0)=1; a(1)=1; a(2)=1; a(3)=2. - _Robert A. Russell_, Jan 19 2024

%e ____ ________

%e \ / /\ \ /\ / /\ /\

%e \/ /__\ \/__\/ /__\ /__\____

%e \ / /\ /\ \ /\ /

%e \/ /__\/__\ \/__\/

%p A208355_list := proc(len) local D, b, h, R, i, k;

%p D := [seq(0, j=0..len+2)]; D[1] := 1; b := true; h := 2; R := NULL;

%p for i from 1 to 2*len do

%p if b then

%p for k from h by -1 to 2 do D[k] := D[k] - D[k-1] od;

%p h := h + 1; R := R, abs(D[2]);

%p else

%p for k from 1 by 1 to h do D[k] := D[k] + D[k+1] od;

%p fi;

%p b := not b:

%p od;

%p return R

%p end:

%p A208355_list(38); # _Peter Luschny_, Dec 19 2017

%t T[_, 0] = 1; T[n_, 1] := n; T[n_, n_] := T[n - 1, n - 2]; T[n_, k_] /; 1 < k < n := T[n, k] = T[n - 1, k] + T[n - 1, k - 2];

%t a[n_] := T[n, n];

%t Table[a[n], {n, 0, 40}] (* _Jean-François Alcover_, Feb 03 2018, from A208101 *)

%t Table[If[EvenQ[n], Binomial[n,n/2]/(n/2+1), Binomial[n+1,(n+1)/2]/((n+3)/2)], {n,0,40}] (* _Robert A. Russell_, Jan 19 2024 *)

%o (Haskell)

%o a208355 n = a208101 n n

%o a208355_list = map last a208101_tabl

%o (Magma) [Ceiling(Catalan(n div 2)): n in [1..40]]; // _Vincenzo Librandi_, Feb 18 2014

%Y Cf. A099363, A208101.

%Y Polyominoes: A001683(n+2) (oriented), A000207 (unoriented). A369314 (chiral), A000108 (rooted), A047749 ({4,oo}.

%K nonn

%O 0,4

%A _Reinhard Zumkeller_, Mar 04 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)