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!)
A360283 a(n) = lcm({n! * binomial(n, k) for k = 0..n}). 1
1, 1, 4, 18, 288, 1200, 43200, 529200, 11289600, 91445760, 9144576000, 92207808000, 13277924352000, 160283515392000, 2094371267788800, 58904191906560000, 15079473128079360000, 242109318556385280000, 78443419212268830720000, 1415903716781452394496000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * lcm({k for k = 1..n+1}) / (n+1) = n! * LCM(n + 1) / (n + 1).
a(n) / a(n-1) = n^2 if and only if n + 1 is prime, for n >= 1.
MAPLE
a := n -> ilcm(seq(n!*binomial(n, k), k=0..n)):
seq(a(n), n = 0..19);
PROG
(Python)
from math import factorial, lcm
def A360283(n): return factorial(n)*lcm(*(i for i in range(1, n+2)))//(n+1) # Chai Wah Wu, Feb 15 2023
CROSSREFS
Sequence in context: A246531 A278565 A370189 * A214168 A214189 A214240
KEYWORD
nonn
AUTHOR
Peter Luschny, Feb 14 2023
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 September 6 16:56 EDT 2024. Contains 375715 sequences. (Running on oeis4.)