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.

A056185 Sum of a(n) terms of 1/k^(8/9) first exceeds n.

This page as a plain text file.
%I A056185 #2 Mar 30 2012 17:30:25
%S A056185 1,2,4,9,18,37,70,128,225,383,633,1019,1601,2461,3711,5494,8003,11484,
%T A056185 16249,22698,31328,42762,57764,77274,102436,134634,175532,227123,
%U A056185 291776,372300,472004
%N A056185 Sum of a(n) terms of 1/k^(8/9) first exceeds n.
%t A056185 s = 0; k = 1; Do[ While[ s <= n, s = s + N[ 1/k^(8/9), 24 ]; k++ ]; Print[ k - 1 ], {n, 1, 30} ]
%Y A056185 Cf. A019529 and A002387.
%K A056185 nonn
%O A056185 0,2
%A A056185 _Robert G. Wilson v_, Aug 01 2000