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!)
A233287 a(n) = lcm_{i=1..n} A001177(i); partial LCM-products of Fibonacci entry points. 4
1, 3, 12, 12, 60, 60, 120, 120, 120, 120, 120, 120, 840, 840, 840, 840, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 12600, 239400, 239400, 239400, 239400, 239400, 239400, 2633400 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
From n=3 onward it seems that lcm_{i=1..n} A001175(i) = 2*a(n).
LINKS
FORMULA
a(1)=1, and for n > 1, a(n) = lcm(A001177(n), a(n-1)).
a(n) = lcm_{i=1..n} A001177(i). [the least common multiple of all terms from A001177(1) to A001177(n)]
PROG
(Scheme, with memoizing definec-macro from Antti Karttunen's IntSeq-library)
(definec (A233287 n) (if (< n 2) 1 (lcm (A001177 n) (A233287 (- n 1)))))
CROSSREFS
Records occur at A233282. Cf. also A233283, A233284, A233285, A001175..A001177, A035105.
Sequence in context: A085060 A340354 A263672 * A214528 A217763 A234749
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 13 2013
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 06:16 EDT 2024. Contains 371782 sequences. (Running on oeis4.)