login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A090932 a(n) = n! / 2^floor(n/2). 3

%I #75 Jan 18 2023 14:26:27

%S 1,1,1,3,6,30,90,630,2520,22680,113400,1247400,7484400,97297200,

%T 681080400,10216206000,81729648000,1389404016000,12504636144000,

%U 237588086736000,2375880867360000,49893498214560000

%N a(n) = n! / 2^floor(n/2).

%C Number of permutations of the n-th row of Pascal's triangle.

%C Can be seen as the multiplicative equivalent to the generalized pentagonal numbers. - _Peter Luschny_, Oct 13 2012

%C a(n) is the number of permutations of [n] in which all ascents start at an even position. For example, a(3) = 3 counts 213, 312, 321. - _David Callan_, Nov 25 2021

%H Vincenzo Librandi, <a href="/A090932/b090932.txt">Table of n, a(n) for n = 0..200</a>

%H Rigoberto Flórez and Leandro Junes, <a href="http://www.emis.de/journals/INTEGERS/papers/l50/l50.Abstract.html">A relation between triangular numbers and prime numbers</a>, Integers, Vol. 12, No. 1 (2012), pp. 83-96.

%F a(n) = binomial(n-1, 2) * a(n-2).

%F E.g.f.: (1+x)/(1-1/2*x^2).

%F E.g.f.: G(0) where G(k) = 1 + x/(1 - x/(x + 2/G(k+1) )) ; (continued fraction, 3-step). - _Sergei N. Gladkovskii_, Nov 27 2012

%F G.f.: G(0), where G(k)= 1 + (2*k+1)*x/(1 - x*(k+1)/(x*(k+1) + 1/G(k+1))); (continued fraction). - _Sergei N. Gladkovskii_, Jun 28 2013

%F a(n) = (n+1)!/A093968(n+1). - _Anton Zakharov_, Jul 25 2016

%F a(n) ~ sqrt(2*Pi*n)*exp(-n)*n^n/2^floor(n/2). - _Ilya Gutkovskiy_, Jul 25 2016

%F From _Rigoberto Florez_, Apr 07 2017: (Start)

%F if n=2k, n! / 2^k = t(1)t(3)t(5)...t(2k-1),

%F if n=2k+1, n! / 2^k = t(2)t(4)t(6)...t(2k),

%F if n=2k, n! / 2^k = (t(k)-t(0))*(t(k)-t(1))*...*(t(k)-t(k-1)),

%F with t(i)= i-th triangular number. (End)

%F From _Amiram Eldar_, Feb 25 2022: (Start)

%F Sum_{n>=0} 1/a(n) = cosh(sqrt(2)) + sinh(sqrt(2))/sqrt(2).

%F Sum_{n>=0} (-1)^n/a(n) = cosh(sqrt(2)) - sinh(sqrt(2))/sqrt(2). (End)

%e From _Rigoberto Florez_, Apr 07 2017: (Start)

%e a(5) = 5!/2^2 = 120/4 = 30.

%e a(6) = 6!/2^3 = 1*6*15 = 90.

%e a(7) = 7!/2^3 = 3*10*21 = 630. (End)

%p a:= n-> n!/2^floor(n/2): seq (a(n), n=0..40);

%t Table[n!/2^Floor[n/2], {n, 0, 21}] (* _Michael De Vlieger_, Jul 25 2016 *)

%t nxt[{n_,a_,b_}]:={n+1,b,a Binomial[n,2]}; NestList[nxt,{2,1,1},30][[All,2]] (* _Harvey P. Dale_, Aug 26 2022 *)

%o (PARI) a(n)=n!/2^floor(n/2)

%o (Magma) [Factorial(n) / 2^Floor(n/2): n in [0..25]]; // _Vincenzo Librandi_, May 14 2011

%o (Sage)

%o @CachedFunction

%o def A090932(n):

%o if n == 0 : return 1

%o fact = n//2 if is_even(n) else n

%o return fact * A090932(n-1)

%o [A090932(n) for n in (0..21)] # _Peter Luschny_, Oct 13 2012

%o (Python)

%o from math import factorial

%o def A090932(n): return factorial(n)>>(n>>1) # _Chai Wah Wu_, Jan 18 2023

%Y Cf. A052277, A007019.

%Y The function appears in several expansions: A009775, A046979, A046981, A007415, A007452.

%K nonn

%O 0,4

%A _Jon Perry_, Feb 26 2004

%E Edited by _Ralf Stephan_, Sep 07 2004

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 10:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)