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.

Original entry on oeis.org

1, 2, 6, 12, 12, 24, 72, 72, 144, 144, 144, 432, 864, 864, 864, 864, 1728, 1728, 5184, 5184, 5184, 10368, 10368, 10368, 10368, 10368, 31104, 62208, 62208, 62208, 62208, 62208, 62208, 124416, 124416, 124416, 373248, 373248, 373248, 373248, 746496
Offset: 1

Views

Author

Reinhard Zumkeller, Jul 21 2004

Keywords

Comments

Subsequence of A003586.

Examples

			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
		

Crossrefs

Programs

  • Mathematica
    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 *)

Formula

a(n) > a(n-1) iff A003586(n) is a power of 2 or of 3 (cf. A006899, A022330, A022331).