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!)
A235062 Odd part of n-th superfactorial (A000178). 1
1, 1, 3, 9, 135, 6075, 1913625, 602791875, 1708914965625, 24223869637734375, 3777106873263732421875, 1766836167640942433642578125, 10744263248137144009663040771484375, 457356694421659081059931729616180419921875 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Partial products of A049606(n). Denominator of 2^(2n)/A000178(n).
LINKS
FORMULA
a(n) = A000265(A000178(n)) = A000178(n)/2^A174605(n) = A000178(n)/2^A007814(A000178(n)).
EXAMPLE
6!5!4!3!2!1! = 24883200 = 2^12 * 6075, so a(6) = 6075.
MATHEMATICA
#/2^IntegerExponent[#, 2]&/@Rest[FoldList[Times, 1, Range[15]!]] (* Harvey P. Dale, Mar 04 2014 *)
PROG
(PARI) a(n)=p=prod(k=1, n, k!); p/2^valuation(p, 2)
(Python)
from math import prod
from operator import mul
from itertools import accumulate
def A235062(n): return prod(map(lambda n:n>>(~n&n-1).bit_length(), accumulate(range(1, n+1), mul))) # Chai Wah Wu, Jul 08 2022
CROSSREFS
Sequence in context: A163402 A288757 A289900 * A082707 A087193 A348141
KEYWORD
nonn,nice
AUTHOR
Ralf Stephan, Jan 03 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 July 15 05:44 EDT 2024. Contains 374324 sequences. (Running on oeis4.)