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.

A056177 Sum of a(n) terms of 1/k^(1/5) first exceeds n.

This page as a plain text file.
%I A056177 #2 Mar 30 2012 17:30:25
%S A056177 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,
%T A056177 44,46,48,50,53,55,57,59,62,64,66,68,71,73,75,78,80,83,85,88,90,92,95,
%U A056177 97,100,102,105,108,110,113,115,118,120,123,126,128,131,134,136,139
%N A056177 Sum of a(n) terms of 1/k^(1/5) first exceeds n.
%t A056177 s = 0; k = 1; Do[ While[ s <= n, s = s + N[ 1/k^(1/5), 24 ]; k++ ]; Print[ k - 1 ], {n, 1, 75} ]
%Y A056177 Cf. A019529.
%K A056177 nonn
%O A056177 0,2
%A A056177 _Robert G. Wilson v_, Aug 01 2000