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.
%I A030056 #16 Jul 08 2025 19:28:50 %S A030056 1,15,136,969,5985,33649,177100,888030,4292145,20160075,92561040, %T A030056 417225900,1852482996,8122425444,35240152720,151532656696, %U A030056 646626422970,2741188875414,11554258485616,48459472266975 %N A030056 a(n) = binomial(2*n+1, n-6). %H A030056 Chai Wah Wu, <a href="/A030056/b030056.txt">Table of n, a(n) for n = 6..500</a> %H A030056 Milan Janjic, <a href="https://pmf.unibl.org/wp-content/uploads/2017/10/enumfor.pdf">Two Enumerative Functions</a>. %F A030056 a(n+1) = a(n)*(2*n+2)*(2*n+3)/((n-5)*(n+8)). - _Chai Wah Wu_, Jan 26 2016 %F A030056 From _Amiram Eldar_, Jan 24 2022: (Start) %F A030056 Sum_{n>=6} 1/a(n) = 40*Pi/(9*sqrt(3)) - 96827/13860. %F A030056 Sum_{n>=6} (-1)^n/a(n) = 29248*log(phi)/(5*sqrt(5)) - 3486955/2772, where phi is the golden ratio (A001622). (End) %t A030056 Table[Binomial[2*n + 1, n - 6], {n, 6, 25}] (* _Amiram Eldar_, Jan 24 2022 *) %o A030056 (Python) %o A030056 from __future__ import division %o A030056 A030056_list, b = [], 1 %o A030056 for n in range(6,501): %o A030056 A030056_list.append(b) %o A030056 b = b*(2*n+2)*(2*n+3)//((n-5)*(n+8)) # _Chai Wah Wu_, Jan 26 2016 %Y A030056 Diagonal 14 of triangle A100257. %Y A030056 Cf. A001622. %K A030056 nonn %O A030056 6,2 %A A030056 _N. J. A. Sloane_