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.
%I A056176 #2 Mar 30 2012 17:30:25 %S A056176 1,2,3,4,6,7,9,11,12,14,16,18,20,23,25,27,29,32,34,37,39,42,44,47,49, %T A056176 52,55,57,60,63,66,69,72,75,77,80,83,86,90,93,96,99,102,105,108,112, %U A056176 115,118,122,125,128,132,135,138,142,145,149,152,156,159,163,167,170 %N A056176 Sum of a(n) terms of 1/k^(1/4) first exceeds n. %t A056176 s = 0; k = 1; Do[ While[ s <= n, s = s + N[ 1/k^(1/4), 24 ]; k++ ]; Print[ k - 1 ], {n, 1, 75} ] %Y A056176 Cf. A019529. %K A056176 nonn %O A056176 0,2 %A A056176 _Robert G. Wilson v_, Aug 01 2000