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!)
A120114 a(n) = lcm(1, ..., 2n+4)/lcm(1, ..., 2n+2). 2
6, 5, 14, 3, 11, 13, 2, 17, 19, 1, 23, 5, 3, 29, 62, 1, 1, 37, 1, 41, 43, 1, 47, 7, 1, 53, 1, 1, 59, 61, 2, 1, 67, 1, 71, 73, 1, 1, 79, 3, 83, 1, 1, 89, 1, 1, 1, 97, 1, 101, 103, 1, 107, 109, 1, 113, 1, 1, 1, 11, 1, 5, 254, 1, 131, 1, 1, 137, 139, 1, 1, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The subdiagonal of A120113 is -a(n).
LINKS
FORMULA
a(n) = A099996(n+2)/A099996(n+1). - Michel Marcus, May 06 2023
MATHEMATICA
Table[(LCM@@Range[2n+4])/LCM@@Range[2n+2], {n, 0, 100}] (* Harvey P. Dale, Dec 15 2017 *)
PROG
(GAP) List([0..75], n->Lcm(List([1..2*n+4], i->i))/Lcm(List([1..2*n+2], i->i))); # Muniru A Asiru, Mar 04 2019
(Magma)
A120114:= func< n | Lcm([1..2*n+4])/Lcm([1..2*n+2]) >;
[A120114(n): n in [0..100]]; // G. C. Greubel, May 05 2023
(SageMath)
def A120114(n):
return lcm(range(1, 2*n+5)) // lcm(range(1, 2*n+3))
[A120114(n) for n in range(101)] # G. C. Greubel, May 05 2023
CROSSREFS
Sequence in context: A046627 A309550 A274931 * A123168 A119636 A300750
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jun 09 2006
EXTENSIONS
More terms from Harvey P. Dale, Dec 15 2017
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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)