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!)
A347304 a(n) = n!/(floor(n/2)!*floor(n/3)!*floor(n/6)!). 1
1, 1, 2, 6, 12, 60, 60, 420, 840, 2520, 5040, 55440, 13860, 180180, 360360, 1081080, 2162160, 36756720, 4084080, 77597520, 155195040, 465585120, 931170240, 21416915520, 1338557220, 33463930500, 66927861000, 200783583000, 401567166000, 11645447814000, 465817912560 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Denis Hanson, On the product of the primes, Canadian Mathematical Bulletin 15.1 (1972): 33-37. See Section 3.
PROG
(PARI) a(n) = n!/((n\2)!*(n\3)!*(n\6)!); \\ Seiichi Manyama, Aug 28 2021
(Python)
from math import factorial
def A347304(n): return factorial(n)//factorial(n//2)//factorial(n//3)//factorial(n//6) # Chai Wah Wu, Aug 28 2021
CROSSREFS
Sequence in context: A058312 A003418 A109935 * A065887 A072181 A283487
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 28 2021
EXTENSIONS
a(0)=1 prepended by Seiichi Manyama, Aug 28 2021
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 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)