login
Number of closed indecomposable linear lambda terms with 2n+1 applications and abstractions.
14

%I #64 Jun 19 2020 14:33:36

%S 1,2,20,352,8624,266784,9896448,426577920,20918138624,1149216540160,

%T 69911382901760,4665553152081920,338942971881472000,

%U 26631920159494995968,2250690001888540950528,203595258621775065120768,19629810220331494121865216

%N Number of closed indecomposable linear lambda terms with 2n+1 applications and abstractions.

%C A linear lambda term is indecomposable if it has no closed proper subterm.

%C Equivalently, number of closed bridgeless rooted trivalent maps (on compact oriented surfaces of arbitrary genus) with 2n+1 trivalent vertices (and 1 univalent vertex).

%C The September 2018 talk by Noam Zeilberger (see link to video) connects three topics (planar maps, Tamari lattices, lambda calculus) and eight sequences: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827. - _N. J. A. Sloane_, Sep 17 2018

%H Gheorghe Coserea, <a href="/A267827/b267827.txt">Table of n, a(n) for n = 0..303</a>

%H Lawrence Dresner, <a href="http://www.osti.gov/scitech/biblio/6829819">Protection of a test magnet wound with a Ag/BSCCO high-temperature superconductor</a>, Oak Ridge National Lab technical report (ORNL/HTSPC-3), 1992. See Eq. (25).

%H Noam Zeilberger, <a href="http://arxiv.org/abs/1512.06751">Linear lambda terms as invariants of rooted trivalent maps</a>, arXiv:1512.06751 [cs.LO], 2015.

%H Noam Zeilberger, <a href="https://arxiv.org/abs/1804.10540">A theory of linear typings as flows on 3-valent graphs</a>, arXiv:1804.10540 [cs.LO], 2018.

%H Noam Zeilberger, <a href="https://arxiv.org/abs/1803.10080">A Sequent Calculus for a Semi-Associative Law</a>, arXiv preprint 1803.10030, March 2018 (A revised version of a 2017 conference paper)

%H Noam Zeilberger, <a href="https://vimeo.com/289907363">A proof-theoretic analysis of the rotation lattice of binary trees, Part 1 (video)</a>, Rutgers Experimental Math Seminar, Sep 13 2018. Part 2 is vimeo.com/289910554.

%H Noam Zeilberger, <a href="http://noamz.org/talks/expmath.2020.06.18.pdf">From Lambda Calculus to the Four Color Theorem, via Experimental Mathematics (slides)</a>, Rutgers Experimental Math Seminar, Jun 18 2020. For the video see http://noamz.org/videos/expmath.2020.06.18.mp4.

%H Noam Zeilberger, <a href="/A267827/a267827.pdf">From Lambda Calculus to the Four Color Theorem, via Experimental Mathematics (slides)</a>, Rutgers Experimental Math Seminar, Jun 18 2020. [Local copy]

%F The o.g.f. f(z) = z + 2*z^3 + 20*z^5 + 352*z^7 + ... can be defined using a catalytic variable as f(z) = F(z,0), where F(z,x) satisfies the functional-differential equation F(z,x) = x + z*(F(z,x) - F(z,0))^2 + z*(d/dx)F(z,x).

%F From _Gheorghe Coserea_, Nov 10 2017: (Start)

%F 0 = x^5*y*y' + y - x^2, where y(x) = x^2*A(-x^6).

%F 0 = 6*y*y'*x^2 + 2*y^2*x - y + 1, where y(x) = A(x).

%F a(n) = (6*n-2)*a(n-1) + Sum_{k=1..n-2} (6*k+2)*a(k)*a(n-1-k), for n >= 2.

%F (End)

%F a(n) = A291843(3*n+1, 2*n), n >= 1. - _Danny Rorabaugh_, Nov 10 2017

%e A(x) = 1 + 2*x + 20*x^2 + 352*x^3 + 8624*x^4 + 266784*x^5 + ...

%t a[0] = 1; a[1] = 2; a[n_] := a[n] = (6n-2) a[n-1] + Sum[(6k+2) a[k] a[n-1-k], {k, 1, n-2}];

%t Table[a[n], {n, 0, 16}] (* _Jean-François Alcover_, Oct 16 2018, after _Gheorghe Coserea_ *)

%o (PARI)

%o seq(N) = {

%o my(a = vector(N)); a[1] = 2;

%o for(n=2, N,

%o a[n] = (6*n-2)*a[n-1] + sum(k=1, n-2, (6*k+2)*a[k]*a[n-1-k]));

%o concat(1,a);

%o };

%o seq(16)

%o \\ test 1: y = x^2*subst(Ser(seq(201)),'x,-'x^6); 0 == x^5*y*y' + y - x^2

%o \\ test 2: y = Ser(seq(201)); 0 == 6*y*y'*x^2 + 2*y^2*x - y + 1

%o \\ _Gheorghe Coserea_, Nov 10 2017

%o F(N) = {

%o my(x='x+O('x^N), t='t, F0=x, F1=0, n=1);

%o while(n++,

%o F1 = t + x*(F0 - subst(F0,t,0))^2 + x*deriv(F0,t);

%o if (F1 == F0, break()); F0 = F1;);

%o F0;

%o };

%o seq(N) = my(v=Vec(subst(F(2*N+2),'t,0))); vector((#v+1)\2, n, v[2*n-1]);

%o seq(16) \\ _Gheorghe Coserea_, Apr 01 2017

%Y Sequences mentioned in the Noam Zeilberger 2018 video: A000168, A000260, A000309, A000698, A000699, A002005, A062980, A267827.

%Y Cf. A000309, A062980.

%K nonn

%O 0,2

%A _Noam Zeilberger_, Jan 21 2016