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.

A077074 Least k such that Z(k,3) <= Z(n,4) where Z(m,s) = Sum_{i>=m} 1/i^s.

Original entry on oeis.org

2, 2, 3, 6, 9, 13, 17, 21, 26, 31, 37, 43, 49, 55, 62, 69, 76, 83, 91, 99, 107, 115, 123, 132, 141, 150, 159, 168, 178, 187, 197, 207, 218, 228, 239, 249, 260, 271, 282, 294, 305, 317, 328, 340, 352, 365
Offset: 0

Views

Author

Benoit Cloitre, Nov 29 2002

Keywords

Crossrefs

Cf. A051890 for least k such that Z(k,2) <= Z(n,3).

Programs

  • PARI
    u=3; v=4; a(n)=if(n<0,0,k=1; while((zeta(u)-sum(k=1,k-1,1/k^u))>(zeta(v)-sum(i=1,n-1,1/i^v)),k++); k)