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.

A134356 a(n) = Product_{k=1..n-1} (3k+1)!/(n+k)!.

This page as a plain text file.
%I A134356 #6 Oct 26 2017 16:47:29
%S A134356 1,4,42,1008,51480,5353920,1100473920,437480709120,330886851724800,
%T A134356 470053968773760000,1241242628123282400000,6040838558884497984000000,
%U A134356 53797620867616662708672000000,871394214986903051252166758400000
%N A134356 a(n) = Product_{k=1..n-1} (3k+1)!/(n+k)!.
%F A134356 a(n) ~ Pi^(5/6) * 3^(3*n^2/2 - 7/36) * n^(n + 13/36) / (A^(1/3) * Gamma(1/3)^(2/3) * 2^(2*n^2 - 11/12) * exp(n - 1/36)), where A is the Glaisher-Kinkelin constant A074962. - _Vaclav Kotesovec_, Oct 26 2017
%t A134356 a = {}; Do[k = Product[(3i + 1)!/(n + i)!, {i, 1, n - 1}]; AppendTo[a, k], {n, 1, 20}]; a
%t A134356 Table[Product[(3k+1)!/(n+k)!,{k,n-1}],{n,20}] (* _Harvey P. Dale_, Sep 30 2015 *)
%Y A134356 Cf. A005130.
%K A134356 nonn
%O A134356 1,2
%A A134356 _Artur Jasinski_, Oct 22 2007