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.

A079527 a(n) = floor( exp(H_n)*log(H_n) ).

Original entry on oeis.org

0, 1, 3, 5, 8, 10, 12, 15, 17, 20, 22, 25, 27, 30, 33, 35, 38, 41, 43, 46, 49, 52, 55, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 86, 89, 92, 95, 98, 101, 104, 107, 110, 113, 116, 119, 123, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 160, 163, 166, 169, 172, 175, 178
Offset: 1

Views

Author

N. J. A. Sloane, Jan 22 2003

Keywords

Crossrefs

H_n = sum of harmonic series (see A002387).
Cf. A079526.

Programs

  • Magma
    [Floor(Exp(HarmonicNumber(n))*Log(HarmonicNumber(n))): n in [1..80]]; // G. C. Greubel, Jan 15 2019
    
  • Mathematica
    a[n_] := Exp[HarmonicNumber[n]] Log[HarmonicNumber[n]] // Floor;
    Array[a, 64] (* Jean-François Alcover, Oct 08 2018 *)
  • PARI
    {h(n) = sum(k=1, n, 1/k)};
    vector(80, n, floor( exp(h(n))*log(h(n))) ) \\ G. C. Greubel, Jan 15 2019
    
  • Sage
    [floor(exp(harmonic_number(n))*log(harmonic_number(n))) for n in (1..80)] # G. C. Greubel, Jan 15 2019