cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A132341 Main diagonal of A132339.

This page as a plain text file.
%I A132341 #24 Sep 23 2024 04:20:45
%S A132341 1,2,10,168,4290,136136,4938024,196125600,8318177010,370784099400,
%T A132341 17184867259560,821870841735840,40334204896057800,2022686389717666848,
%U A132341 103312949950998743200,5360873347802169267840,282015983963437605168210
%N A132341 Main diagonal of A132339.
%H A132341 G. C. Greubel, <a href="/A132341/b132341.txt">Table of n, a(n) for n = 0..500</a>
%H A132341 G. Kreweras, <a href="http://www.numdam.org/numdam-bin/item?id=BURO_1965__6__9_0">Sur une classe de problèmes de dénombrement liés au treillis des partitions des entiers</a>, Cahiers du Bureau Universitaire de Recherche Opérationnelle, Institut de Statistique, Université de Paris, 6 (1965), see equation (67) circa p. 82.
%F A132341 a(n) = T(n, n), where T(n,k) if the array of A132339.
%F A132341 a(n) = A(2*n, n), where A(n, k) is the antidiagonal triangle of A132339.
%F A132341 a(n) ~ 2^(6*n - 9/2) / (Pi*n^3). - _Vaclav Kotesovec_, Mar 27 2016
%F A132341 a(n) = binomial(2*n, n)*binomial(4*n-2, 2*n-1)/((2*n)*(2*n-1)), with a(0) = 1. - _G. C. Greubel_, Dec 14 2021
%t A132341 a[n_]:= If[n==0, 1, Binomial[2*n, n]*Binomial[4*n-2, 2*n-1]/(2*Binomial[2*n,2])];
%t A132341 Table[a[n], {n, 0, 20}] (* _G. C. Greubel_, Dec 14 2021 *)
%o A132341 (PARI) a(n) = if (n, 2*(4*n-3)!/(n!^2*(2*n-1)!), 1); \\ _Michel Marcus_, Mar 27 2016
%o A132341 (Sage) b=binomial
%o A132341 def a(n): return 1 if (n==0) else b(2*n, n)*b(4*n-2, 2*n-1)/(2*b(2*n,2))
%o A132341 [a(n) for n in (0..20)] # _G. C. Greubel_, Dec 14 2021
%Y A132341 Cf. A132339.
%K A132341 nonn,easy
%O A132341 0,2
%A A132341 _N. J. A. Sloane_, Nov 08 2007
%E A132341 More terms from _Max Alekseyev_, Sep 12 2009