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.

A217850 Numbers which are the sums of consecutive tenth powers.

This page as a plain text file.
%I A217850 #6 Nov 06 2012 16:31:06
%S A217850 0,1,1024,1025,59049,60073,60074,1048576,1107625,1108649,1108650,
%T A217850 9765625,10814201,10873250,10874274,10874275,60466176,70231801,
%U A217850 71280377,71339426,71340450,71340451,282475249,342941425,352707050,353755626,353814675,353815699
%N A217850 Numbers which are the sums of consecutive tenth powers.
%H A217850 T. D. Noe, <a href="/A217850/b217850.txt">Table of n, a(n) for n = 1..1000</a>
%t A217850 nMax = 10^10; t = {0}; Do[k = n; s = 0; While[s = s + k^10; s <= nMax, AppendTo[t, s]; k++], {n, nMax^(1/10)}]; t = Union[t]
%Y A217850 Cf. A034705, A217843-A217849.
%K A217850 nonn
%O A217850 1,3
%A A217850 _T. D. Noe_, Oct 23 2012