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.

A066645 a(n) = floor( (4/3)*Pi*n^3 ).

This page as a plain text file.
%I A066645 #25 Apr 02 2015 06:27:26
%S A066645 0,4,33,113,268,523,904,1436,2144,3053,4188,5575,7238,9202,11494,
%T A066645 14137,17157,20579,24429,28730,33510,38792,44602,50965,57905,65449,
%U A066645 73622,82447,91952,102160,113097,124788,137258,150532,164636,179594,195432
%N A066645 a(n) = floor( (4/3)*Pi*n^3 ).
%C A066645 a(n) = A164086(A000578(n)). [_Reinhard Zumkeller_, Aug 11 2009]
%C A066645 Volume of a sphere of radius n, rounded down.
%H A066645 Harry J. Smith, <a href="/A066645/b066645.txt">Table of n, a(n) for n = 0..1000</a>
%F A066645 a(n) = floor((4/3)*Pi*n^3).
%F A066645 a(n) = A135973(n) - 1 for n > 0.
%t A066645 Table[ Floor[(4/3)Pi*n^3], {n, 0, 50} ]
%o A066645 (PARI) { for (n=0, 1000, write("b066645.txt", n, " ", floor((4/3)*Pi*n^3)) ) } \\ _Harry J. Smith_, Mar 16 2010
%o A066645 (Maxima) A066645(n):=floor((4/3)*%pi*n^3)$
%o A066645 makelist(A066645(n),n,1,30); /* _Martin Ettl_, Nov 03 2012 */
%o A066645 (Sage)
%o A066645 n=100 # change n for more values
%o A066645 [floor(4/3*pi*r^3) for r in [0..n]] # _Tom Edgar_, Oct 10 2013
%Y A066645 Cf. A000578, A135973, A164086.
%K A066645 easy,nonn
%O A066645 0,2
%A A066645 _Amarnath Murthy_, Dec 29 2001
%E A066645 More terms from _Robert G. Wilson v_, Jan 03 2002
%E A066645 0 prepended by _T. D. Noe_, Oct 10 2013