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.

A096075 Least common multiple of first n 3-smooth numbers.

This page as a plain text file.
%I A096075 #18 Jul 18 2023 13:03:06
%S A096075 1,2,6,12,12,24,72,72,144,144,144,432,864,864,864,864,1728,1728,5184,
%T A096075 5184,5184,10368,10368,10368,10368,10368,31104,62208,62208,62208,
%U A096075 62208,62208,62208,124416,124416,124416,373248,373248,373248,373248,746496
%N A096075 Least common multiple of first n 3-smooth numbers.
%C A096075 Subsequence of A003586.
%H A096075 Amiram Eldar, <a href="/A096075/b096075.txt">Table of n, a(n) for n = 1..10000</a>
%H A096075 <a href="/index/Lc#lcm">Index entries for sequences related to lcm's</a>.
%F A096075 a(n) > a(n-1) iff A003586(n) is a power of 2 or of 3 (cf. A006899, A022330, A022331).
%e A096075 The first seven 3-smooth numbers are {1, 2, 3, 4, 6, 8, 9} and their lcm is 72. - _David A. Corneth_, Jul 13 2023
%t A096075 seq[max_] := Module[{sm3 = Sort[Flatten[Table[2^i*3^j, {i, 0, Log2[max]}, {j, 0, Log[3, max/2^i]}]]], e2, e3}, e2 = FoldList[Max, IntegerExponent[sm3, 2]]; e3 = FoldList[Max, IntegerExponent[sm3, 3]]; 2^e2*3^e3]; seq[1000] (* _Amiram Eldar_, Jul 13 2023 *)
%Y A096075 Cf. A003418, A003586, A006899, A022330, A022331, A051451.
%K A096075 nonn
%O A096075 1,2
%A A096075 _Reinhard Zumkeller_, Jul 21 2004