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.

A134288 a(n) = binomial(n+7,7)*binomial(n+7,6)/(n+7).

This page as a plain text file.
%I A134288 #45 Apr 08 2025 08:47:55
%S A134288 1,28,336,2520,13860,60984,226512,736164,2147145,5725720,14158144,
%T A134288 32821152,71954064,150233760,300467520,578399976,1075994073,
%U A134288 1941008916,3405278800,5824819000,9735768900,15931258200,25565576400,40293571500,62455035825,95315993136
%N A134288 a(n) = binomial(n+7,7)*binomial(n+7,6)/(n+7).
%C A134288 Seventh column of Narayana triangle A001263.
%C A134288 In the Narayana triangle N(n,k) = A001263(n,k) the sequence of column no. k>=1 (without leading zeros) coincides with the sequence of the diagonal d=k-1>=0 (d=0 for the main diagonal N(n,n)).
%C A134288 Kekulé numbers K(O(1,6,n)) for certain benzenoids (see the Cyvin-Gutman reference, p. 105, eq. (i)).
%D A134288 S. J. Cyvin and I. Gutman, Kekulé structures in benzenoid hydrocarbons, Lecture Notes in Chemistry, No. 46, Springer, New York, 1988.
%D A134288 S. Mukai, An Introduction to Invariants and Moduli, Cambridge, 2003; Prop. 8.4, case n=8. - _N. J. A. Sloane_, Aug 28 2010.
%H A134288 T. D. Noe, <a href="/A134288/b134288.txt">Table of n, a(n) for n = 0..1000</a>
%H A134288 Feihu Liu, Guoce Xin, and Chen Zhang, <a href="https://arxiv.org/abs/2412.18744">Ehrhart Polynomials of Order Polytopes: Interpreting Combinatorial Sequences on the OEIS</a>, arXiv:2412.18744 [math.CO], 2024. See p. 25.
%H A134288 <a href="/index/Rec#order_13">Index entries for linear recurrences with constant coefficients</a>, signature (13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13,1).
%F A134288 a(n) = A001263(n+7,7).
%F A134288 O.g.f.: (1 + 15*x + 50*x^2 + 50*x^3 + 15*x^4 + x^5)/(1-x)^13. Numerator polynomial is the sixth row polynomial of the Narayana triangle.
%F A134288 a(n) = binomial(n+6,6)^2 - binomial(n+6,5)*binomial(n+6,7). - _Gary Detlefs_, Dec 05 2011
%F A134288 a(n) = Product_{i=1..6} A002378(n+i)/A002378(i). - _Bruno Berselli_, Sep 01 2016
%F A134288 From _Amiram Eldar_, Oct 19 2020: (Start)
%F A134288 Sum_{n>=0} 1/a(n) = 1741019/20 - 8820*Pi^2.
%F A134288 Sum_{n>=0} (-1)^n/a(n) = 210*Pi^2 - 41433/20. (End)
%p A134288 a := n -> ((n+1)*((n+2)*(n+3)*(n+4)*(n+5)*(n+6))^2*(n+7))/3628800:
%p A134288 seq(a(n), n=0..25); # _Peter Luschny_, Sep 01 2016
%t A134288 Table[Binomial[n+7,7] Binomial[n+7,6]/(n+7),{n,0,30}] (* or *) LinearRecurrence[{13,-78,286,-715,1287,-1716,1716,-1287,715,-286,78,-13, 1}, {1,28,336,2520,13860,60984,226512,736164,2147145,5725720, 14158144, 32821152,71954064}, 30] (* _Harvey P. Dale_, Sep 28 2016 *)
%o A134288 (PARI) Vec((1+15*x+50*x^2+50*x^3+15*x^4+x^5)/(1-x)^13 + O(x^30)) \\ _Altug Alkan_, Sep 01 2016
%o A134288 (PARI) vector(30, n, binomial(n+6, 7)*binomial(n+5, 5)/6) \\ _G. C. Greubel_, Aug 27 2019
%o A134288 (Magma) [Binomial(n+7, 7)*Binomial(n+6, 5)/6: n in [0..30]]; // _G. C. Greubel_, Aug 27 2019
%o A134288 (Sage) [binomial(n+7, 7)*binomial(n+6, 5)/6 for n in (0..30)] # _G. C. Greubel_, Aug 27 2019
%o A134288 (GAP) List([0..30], n-> Binomial(n+7, 7)*Binomial(n+6, 5)/6); # _G. C. Greubel_, Aug 27 2019
%Y A134288 Cf. A002378.
%Y A134288 Cf. A108679 (sixth column of Narayana triangle).
%Y A134288 Cf. A134289 (eighth column of Narayana triangle).
%K A134288 nonn,easy
%O A134288 0,2
%A A134288 _Wolfdieter Lang_, Nov 13 2007
%E A134288 Edited by _N. J. A. Sloane_, Aug 28 2010