login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A056177
Sum of a(n) terms of 1/k^(1/5) first exceeds n.
0
1, 2, 3, 4, 5, 7, 8, 10, 11, 13, 15, 16, 18, 20, 22, 24, 26, 28, 29, 31, 33, 36, 38, 40, 42, 44, 46, 48, 50, 53, 55, 57, 59, 62, 64, 66, 68, 71, 73, 75, 78, 80, 83, 85, 88, 90, 92, 95, 97, 100, 102, 105, 108, 110, 113, 115, 118, 120, 123, 126, 128, 131, 134, 136, 139
OFFSET
0,2
MATHEMATICA
s = 0; k = 1; Do[ While[ s <= n, s = s + N[ 1/k^(1/5), 24 ]; k++ ]; Print[ k - 1 ], {n, 1, 75} ]
CROSSREFS
Cf. A019529.
Sequence in context: A189729 A287549 A347655 * A025199 A213858 A277992
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Aug 01 2000
STATUS
approved