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.

A112821 Numbers n such that lcm(1,2,3,...,n)/19 equals the denominator of the n-th harmonic number H(n).

Original entry on oeis.org

343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360
Offset: 1

Views

Author

Robert G. Wilson v, Sep 17 2005

Keywords

Comments

Positions where 19 occurs in A110566.

Crossrefs

Programs

  • Mathematica
    a = h = 1; t = {}; Do[a = LCM[a, n]; h = h + 1/n; If[a/Denominator[h] == 19, AppendTo[t, n]], {n, 10^6}]; t
    Select[Range[500],Denominator[HarmonicNumber[#]]==LCM@@Range[#]/19&] (* Harvey P. Dale, Jan 29 2012 *)

Extensions

Definition corrected by Max Alekseyev, Mar 03 2007