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.

A034177 a(n) is the n-th quartic factorial number divided by 4.

This page as a plain text file.
%I A034177 #49 Sep 08 2022 08:44:51
%S A034177 1,8,96,1536,30720,737280,20643840,660602880,23781703680,951268147200,
%T A034177 41855798476800,2009078326886400,104472072998092800,
%U A034177 5850436087893196800,351026165273591808000,22465674577509875712000,1527665871270671548416000,109991942731488351485952000
%N A034177 a(n) is the n-th quartic factorial number divided by 4.
%H A034177 Michael De Vlieger, <a href="/A034177/b034177.txt">Table of n, a(n) for n = 1..365</a>
%H A034177 INRIA Algorithms Project, <a href="http://ecs.inria.fr/services/structure?nbr=513">Encyclopedia of Combinatorial Structures 513</a>.
%H A034177 Norihiro Nakashima and Shuhei Tsujie, <a href="https://arxiv.org/abs/1904.09748">Enumeration of Flats of the Extended Catalan and Shi Arrangements with Species</a>, arXiv:1904.09748 [math.CO], 2019.
%F A034177 4*a(n) = (4*n)(!^4) = Product_{j=1..n} 4*j = 4^n * n!.
%F A034177 E.g.f.: (-1 + 1/(1-4*x))/4.
%F A034177 D-finite with recurrence: a(n) -4*n*a(n-1)=0. - _R. J. Mathar_, Feb 24 2020
%F A034177 From _Amiram Eldar_, Jan 08 2022: (Start)
%F A034177 Sum_{n>=1} 1/a(n) = 4*(exp(1/4)-1).
%F A034177 Sum_{n>=1} (-1)^(n+1)/a(n) = 4*(1-exp(-1/4)). (End)
%e A034177 G.f. = x + 8*x^2 + 96*x^3 + 1536*x^4 + 30720*x^5 + 737820*x^6 + ...
%p A034177 [seq(n!*4^(n-1), n=1..16)]; # _Zerinvary Lajos_, Sep 23 2006
%t A034177 Array[4^(# - 1) #! &, 16] (* _Michael De Vlieger_, May 30 2019 *)
%o A034177 (PARI) vector(20, n, 4^(n-1)*n!) \\ _G. C. Greubel_, Aug 15 2019
%o A034177 (Magma) [4^(n-1)*Factorial(n): n in [1..20]]; // _G. C. Greubel_, Aug 15 2019
%o A034177 (Sage) [4^(n-1)*factorial(n) for n in (1..20)] # _G. C. Greubel_, Aug 15 2019
%o A034177 (GAP) List([1..20], n-> 4^(n-1)*Factorial(n) ); # _G. C. Greubel_, Aug 15 2019
%Y A034177 Cf. A007696, A000407, A034176. First column of triangle A048786.
%Y A034177 A052570 is an essentially identical sequence. - _Philippe Deléham_, Sep 18 2008
%Y A034177 Equals the second right hand column of A167569 divided by 2. - _Johannes W. Meijer_, Nov 12 2009
%K A034177 easy,nonn
%O A034177 1,2
%A A034177 _Wolfdieter Lang_