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.

A009445 a(n) = (2*n+1)!.

This page as a plain text file.
%I A009445 #78 Mar 09 2025 13:49:36
%S A009445 1,6,120,5040,362880,39916800,6227020800,1307674368000,
%T A009445 355687428096000,121645100408832000,51090942171709440000,
%U A009445 25852016738884976640000,15511210043330985984000000,10888869450418352160768000000,8841761993739701954543616000000,8222838654177922817725562880000000
%N A009445 a(n) = (2*n+1)!.
%C A009445 Denominators in the expansion of sin(x):
%C A009445   sin(x) = x - x^3/3! + x^5/5! - x^7/7! + x^9/9! - ...
%C A009445 Denominators in the expansion of sinc(x) = sin(x)/x:
%C A009445   sinc x = sin(x)/x = 1 - x^2/3! + x^4/5! - x^6/7! + x^8/9! - ... - _Daniel Forgues_, Oct 20 2011
%C A009445 The terms of this sequence are the denominators of sinh(x) = (e^x-e^(-x))/2 = x + x^3/3! + x^5/5! + x^7/7! + .... - _Mohammad K. Azarian_, Jan 19 2012
%D A009445 John H. Conway and Richard K. Guy, The Book of Numbers, New York: Springer-Verlag, 1996. See p. 111.
%D A009445 H. B. Dwight, Tables of Integrals and Other Mathematical Data, Macmillan, NY, 1968, p. 88.
%D A009445 Isaac Newton, De analysi, 1669; reprinted in D. Whiteside, ed., The Mathematical Works of Isaac Newton, vol. 1, Johnson Reprint Co., 1964; see p. 20.
%D A009445 Jerome Spanier and Keith B. Oldham, "Atlas of Functions", Hemisphere Publishing Corp., 1987, chapter 32, equation 32:6:2 at page 301.
%H A009445 Vincenzo Librandi, <a href="/A009445/b009445.txt">Table of n, a(n) for n = 0..200</a>
%H A009445 I. Dolinka, J. East, A. Evangelou, D. FitzGerald, N. Ham, et al., <a href="http://arxiv.org/abs/1408.2021">Enumeration of idempotents in diagram semigroups and algebras</a>, arXiv preprint arXiv:1408.2021 [math.GR], 2014.
%H A009445 W. Dunham, <a href="http://www.jstor.org/stable/30037380">Touring the calculus gallery</a>, Amer. Math. Monthly, 112 (2005), 1-19.
%H A009445 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/HyperbolicSine.html">Hyperbolic Sine</a>.
%F A009445 a(n) = A014481(n) * A001147(n). - _Reinhard Zumkeller_, Dec 03 2011
%F A009445 Sum_{n>=0} a(n) * x^n / (n!)^2 = 1 / (1 - 4*x)^(3/2). - _Ilya Gutkovskiy_, Jul 11 2021
%e A009445 G.f. = 1 + 6*x + 120*x^2 + 5040*x^3 + 362880*x^4 + 39916800*x^5 + ...
%t A009445 Array[(2 # + 1)! &, 15] (* _Robert G. Wilson v_, Aug 08 2018 *)
%o A009445 (Sage) [stirling_number1(2*i,1) for i in range(1,22)] # _Zerinvary Lajos_, Jun 27 2008
%o A009445 (PARI) a(n)=(n+n+1)! \\ _Charles R Greathouse IV_, Oct 20 2011
%o A009445 (Magma) [Factorial(2*n+1): n in [0..20]]; // _Vincenzo Librandi_, Oct 21 2011
%o A009445 (Haskell)
%o A009445 a009445 n = product [1..2*n+1]  -- _Reinhard Zumkeller_, Dec 03 2011
%o A009445 (Sage)
%o A009445 T = taylor(sin(x^2), x, 0, 70)
%o A009445 [(-1)^n/T.coefficient(x,4*n+2) for n in (0..15)] # _Peter Luschny_, Dec 14 2012
%Y A009445 Cf. A000142, A001147, A010050, A014481.
%K A009445 nonn,easy
%O A009445 0,2
%A A009445 _R. H. Hardin_, Joe Keane (jgk(AT)jgk.org)