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.

A268112 Numbers k for which the numerator of the k-th harmonic number H_k is divisible by the third power of a prime less than k.

Original entry on oeis.org

848, 9338, 10583, 3546471722268916272
Offset: 1

Views

Author

Felix Fröhlich, Jan 26 2016

Keywords

Comments

The sequence contains numbers k for which there is a prime p < k with v_p(H_k) >= 3, where v_p(x) is the p-adic valuation of x and H_k is the k-th Harmonic number. All numbers were found by D. W. Boyd. The corresponding p for a(1) through a(4) is 11 while for a(5) (in the b-file) is 83. [Edited by Petros Hadjicostas, May 25 2020]
It is a widely believed conjecture that there is no pair of an integer k and a prime p for which v_p(H_k) >= 4. If variations of this conjecture hold, then Krattenhaler and Rivoal (2007-2009) would be able to establish some formulas for their theory. See also A007757, A131657, and A131658. - Petros Hadjicostas, May 25 2020
Terms a(4) and a(5) are conjectural as possible existence of smaller terms is not eliminated. Carofiglio et al. (2025) computed some further terms (see links). - Max Alekseyev, Apr 01 2025

Crossrefs

Programs

  • PARI
    h(n) = sum(i=1, n, 1/i);
    is(n) = {forprime(p=1, n-1, if(valuation((numerator(h(n))), p) > 2, return(1))); return(0)} \\ Edited by Petros Hadjicostas, May 25 2020

Extensions

Name edited by and a(5) copied from the references by Petros Hadjicostas, May 25 2020