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!)
A208448 Greatest common divisors of consecutive floor-factorial numbers (A010786). 4
1, 1, 1, 2, 2, 6, 2, 8, 24, 60, 12, 288, 96, 84, 60, 3840, 384, 15552, 576, 14400, 20160, 221760, 576, 331776, 552960, 224640, 51840, 20321280, 2903040, 108864000, 345600, 17694720, 145981440, 51701760, 1935360, 11287019520, 1254113280, 2978519040, 10782720 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = GCD(A010786(n+1),A010786(n)).
PROG
(Haskell)
a208448 n = a208448_list !! (n-1)
a208448_list = zipWith gcd a010786_list $ tail a010786_list
(PARI) f(n) = prod(k=1, n, n\k); \\ A010786
a(n) = gcd(f(n+1), f(n)); \\ Michel Marcus, Feb 03 2022
CROSSREFS
Sequence in context: A305984 A193388 A291840 * A096869 A345315 A154009
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Feb 26 2012
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 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)