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.

A056183 Sum of a(n) terms of 1/k^(6/7) first exceeds n.

Original entry on oeis.org

1, 2, 4, 8, 16, 31, 56, 96, 158, 253, 393, 594, 878, 1271, 1806, 2523, 3472, 4711, 6312, 8359, 10949, 14199, 18243, 23237, 29360, 36816, 45841, 56698, 69689, 85152, 103467, 125060, 150406, 180034, 214529, 254542, 300788, 354056, 415215, 485213
Offset: 0

Views

Author

Robert G. Wilson v, Aug 01 2000

Keywords

Examples

			For example, a(4) = 16 since Sum_{k=1..16} 1/k^(6/7) = 4.014698427... > 4, whereas Sum_{k=1..15} 1/k^(6/7) = 3.921823784... < 4.
		

Crossrefs

Cf. A019529 and A002387.

Programs

  • Mathematica
    s = 0; k = 1; Do[ While[ s <= n, s = s + N[ 1/k^(7/8), 24 ]; k++ ]; Print[ k - 1 ], {n, 1, 40} ]