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.

A093920 Row sums of A093919.

Original entry on oeis.org

1, 4, 15, 40, 205, 276, 1939, 4432, 13689, 18100, 199111, 200784, 2610205, 3136420, 3191595, 7012576, 119213809, 137103012, 2604957247, 2605199080, 2608367181, 3084857644, 70951725835, 71062911792, 355315542025, 442803520276
Offset: 1

Views

Author

Amarnath Murthy, Apr 25 2004

Keywords

Crossrefs

Cf. A093919.

Programs

  • Mathematica
    T[n_, k_] := LCM @@ Drop[ Reverse[ Range[n]], (k - n)]; Table[ Plus @@ Table[ T[n, k], {k, n}], {n, 26}] (* Robert G. Wilson v, Apr 27 2004 *)

Extensions

Edited by Robert G. Wilson v, Apr 27 2004

A179661 Triangle read by rows: T(n,k) is the largest least common multiple of any k-element subset of the first n positive integers.

Original entry on oeis.org

1, 2, 2, 3, 6, 6, 4, 12, 12, 12, 5, 20, 60, 60, 60, 6, 30, 60, 60, 60, 60, 7, 42, 210, 420, 420, 420, 420, 8, 56, 280, 840, 840, 840, 840, 840, 9, 72, 504, 2520, 2520, 2520, 2520, 2520, 2520, 10, 90, 630, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 11, 110, 990
Offset: 1

Views

Author

Keywords

Comments

Sequence differs from A093919; first divergences are at indices 31, 40, 48, 59.
Main diagonal is A003418.

Examples

			Triangle begins:
    [ 1 ],
    [ 2, 2 ],
    [ 3, 6, 6 ],
    [ 4, 12, 12, 12 ],
    [ 5, 20, 60, 60, 60 ],
    [ 6, 30, 60, 60, 60, 60 ].
		

Crossrefs

Programs

Formula

T(n,k) = max{ lcm(x_1,...,x_k) ; 0 < x_1 < ... < x_k <= n }.
Showing 1-2 of 2 results.