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.

Showing 1-2 of 2 results.

A064354 Distinct values arising in the sequence of the least common multiples of the first n composite numbers.

Original entry on oeis.org

1, 4, 12, 24, 72, 360, 2520, 5040, 55440, 277200, 3603600, 10810800, 21621600, 367567200, 6983776800, 160626866400, 1124388064800, 32607253879200, 1010824870255200, 2021649740510400, 74801040398884800, 224403121196654400
Offset: 1

Views

Author

Labos Elemer, Sep 25 2001

Keywords

Examples

			Different from A003418 and A051451.
		

Crossrefs

Programs

  • Mathematica
    t=t=Select[ Range[ 1, 200 ], !PrimeQ[ # ] & ] Union[ Table[ Apply[ LCM, Table[ Part[ t, w ], {w, 1, s} ] ], {s, 1, 100} ] ]
    Join[{1},With[{cmps=Select[Range[100],CompositeQ]},Table[LCM@@Take[cmps,n],{n,Length[cmps]}]]]//Union (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 06 2018 *)
  • PARI
    { n=0; b=1; for (m=1, 10^9, if (m>1, if (isprime(m) || (b=lcm(a, m)) == a, next)); write("b064354.txt", n++, " ", a=b); if (n==100, break) ) } \\ Harry J. Smith, Sep 12 2009

Extensions

a(22) from Harry J. Smith, Sep 12 2009
Definition clarified by Harvey P. Dale, Dec 06 2018

A025544 a(n) = sum of the exponents in the prime factorization of the least common multiple of the first n composite numbers.

Original entry on oeis.org

2, 3, 4, 5, 6, 6, 7, 7, 8, 8, 8, 8, 9, 9, 10, 11, 12, 12, 12, 13, 13, 14, 14, 14, 15, 15, 15, 15, 15, 15, 16, 16, 17, 17, 17, 17, 17, 17, 17, 17, 18, 18, 19, 19, 20, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 22, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25, 25, 25, 25
Offset: 1

Views

Author

Keywords

Formula

a(n) = A001222(A025543(n+1)).

Extensions

Extended by Ray Chandler, May 01 2007
Showing 1-2 of 2 results.