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 A248709 #13 Aug 16 2024 19:07:16 %S A248709 12600,37837800,97772875200,247365374256000,629483036137956000, %T A248709 1621828071329658192000,4234824783966213204768000, %U A248709 11198994141198650820008976000,29959571750765218953790679280000,80980722442318386832096206093840000,220917676017677910841226480887103040000 %N A248709 a(n) = f(5*n)/(f(n-2)*f(n-1)*f(n)*f(n+1)*f(n+2)), where f(k) = k!. %C A248709 These are multinomial coefficients. %H A248709 Clark Kimberling, <a href="/A248709/b248709.txt">Table of n, a(n) for n = 2..200</a> %F A248709 a(n) ~ 5^(5*n+1/2) / (4*Pi^2*n^2). - _Vaclav Kotesovec_, Oct 19 2014 %e A248709 a(3) = 15!/(1!*2!*3!*4!*5!) = 37837800. %t A248709 Table[(5 n)!/((n - 2)! (n - 1)! n! (n + 1)! (n + 2)!), {n, 2, 20}] %o A248709 (Sage) [factorial(5*n)/(factorial(n - 2)*factorial(n - 1)*factorial(n)*factorial(n + 1)*factorial(n + 2)) for n in range(2,14)] # _Stefano Spezia_, Aug 16 2024 %Y A248709 Cf. A000142, A001700, A248707, A248708, A248710. %K A248709 nonn,easy %O A248709 2,1 %A A248709 _Clark Kimberling_, Oct 12 2014