cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A180402 a(n) = lcm(1,...,Fibonacci(n)).

Original entry on oeis.org

1, 1, 2, 6, 60, 840, 360360, 232792560, 144403552893600, 164249358725037825439200, 718766754945489455304472257065075294400, 33312720618553145840562713089120360606823375590405920630576000
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 02 2010

Keywords

Comments

Also least period for number of ways of placing k non-attacking queens on an n X n chessboard. [conjectured by Kotesovec; proved for n <= 5. - Thomas Zaslavsky, Jun 24 2018]

Crossrefs

Programs

  • Maple
    a:= n-> ilcm($1..(<<0|1>, <1|1>>^n)[1,2]):
    seq(a(n), n=1..14);  # Alois P. Heinz, Aug 12 2017
  • Mathematica
    Table[Apply[LCM, Range[Fibonacci[k]]], {k, 1, 10}]
    Array[LCM @@ Range@Fibonacci@# &, 12] (* Robert G. Wilson v, Sep 05 2010 *)
  • PARI
    a(n) = lcm([1..fibonacci(n)]); \\ Michel Marcus, Jun 24 2018

Extensions

a(11) onwards from Robert G. Wilson v, Sep 05 2010