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.

A062954 Least common multiple of Lucas numbers L(0), L(1), ..., L(n).

This page as a plain text file.
%I A062954 #11 Apr 15 2023 23:32:35
%S A062954 2,2,6,12,84,924,2772,80388,3778236,71786484,2943245844,585705922956,
%T A062954 13471236227988,7018514074781748,1972202455013671188,
%U A062954 61138276105423806828,134932175364670341669396,481842798227237790101413116,154671538230943330622553610236
%N A062954 Least common multiple of Lucas numbers L(0), L(1), ..., L(n).
%t A062954 Module[{nn=20,luc},luc=LucasL[Range[0,nn]];Rest[Table[LCM@@Take[luc,n],{n,nn}]]] (* _Harvey P. Dale_, Jun 29 2015 *)
%o A062954 (PARI) A000032(n) = fibonacci(n+1)+fibonacci(n-1)
%o A062954 a(n) = {v = 1; for (i=0, n, v = lcm(v, A000032(i));); return (v);} \\ _Michel Marcus_, Jul 22 2013
%Y A062954 Cf. A000032, A035105.
%K A062954 easy,nonn
%O A062954 0,1
%A A062954 _Reiner Martin_, Jul 21 2001
%E A062954 a(0) and more terms from _Sean A. Irvine_, Apr 15 2023