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!)
A240988 Denominators of the (reduced) rationals (((n-1)!!)/(n!! * 2^((1 + (-1)^n)/2)))^((-1)^n), where n is a positive integer. 1
1, 4, 2, 16, 8, 32, 16, 256, 128, 512, 256, 2048, 1024, 4096, 2048, 65536, 32768, 131072, 65536, 524288, 262144, 1048576, 524288, 8388608, 4194304, 16777216, 8388608, 67108864, 33554432, 134217728, 67108864, 4294967296, 2147483648, 8589934592, 4294967296 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numerators for this sequence are the swinging factorial A163590, starting from n = 1.
The terms are all powers of 2 (A000079).
It appears that a(2*n) = 2^A101925(n) and a(2*n+1) = 2^A005187(n). - Robert Israel, Aug 06 2014
LINKS
FORMULA
a(n) = denominator((((n-1)!!)/(n!! * 2^((1 + (-1)^n)/2)))^((-1)^n)).
a(n) = denominator(g(1, n)) where g(m, n) = m if m = n; m/(2 * g(m + 1, n) otherwise.
EXAMPLE
For n = 1, a(1) = 1.
For n = 2, a(2) = 2 * 2 = 4.
For n = 6, a(6) = 2 * 2 * 4 * 2 = 32.
MAPLE
f:= n -> denom(((doublefactorial(n-1)) / (doublefactorial(n)*2^((1+(-1)^n)/2)))^((-1)^n)):
seq(f(n), n=1..100); # Robert Israel, Aug 06 2014
PROG
(PARI)
df(n) = prod(i=0, floor((n-1)/2), n-2*i) \\ Double factorial (n!!)
a(n) = denominator(((df(n-1)) / (df(n)*2^((1+(-1)^n)/2)))^((-1)^n))
vector(50, n, a(n)) \\ Colin Barker, Aug 06 2014
CROSSREFS
Cf. A163590 (numerators).
Sequence in context: A191452 A348685 A110485 * A154383 A022664 A316463
KEYWORD
frac,nonn
AUTHOR
James Burling, Aug 06 2014
EXTENSIONS
More terms from Colin Barker, Aug 06 2014
STATUS
approved

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 12:55 EDT 2024. Contains 371913 sequences. (Running on oeis4.)