OFFSET
1,1
COMMENTS
The annulus is the region between two concentric circles of radius r(i) and r(i+1). The area of the annulus is the area of the bigger circle minus the area of the smaller one or Pi(r(i+1)^2 - r(i)^2). Then for this sequence which defines the thickness or the annuli as the consecutive integers, we determine the area using the formula above and the summation formula for an arithmetic progression. Area of annulus(i+1) = Pi(r(i+1)*(r(i+1)+1)/2 - r(i)*(r(i)+1)/2). In other words, the annuli form concentric circles whose successive radii are the sum of the successive annuli up to that point.
FORMULA
a(n) = floor(Pi*n^3). - Robert Israel, Nov 24 2014
EXAMPLE
Any circle is an annulus formed by a circle of radius r and a circle of radius 0. So the integer area of the annulus of the unit circle is Pi(1^2 - 0^2) = 3, the first term in the sequence.
MAPLE
seq(floor(Pi*n^3), n=1..100); # Robert Israel, Nov 24 2014
PROG
(PARI) g(n) = for(j=1, n, x=j*(j+1)/2; y=(j-1)*(j)/2; print1(floor(Pi*(x^2-y^2))", "))
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Cino Hilliard, Feb 10 2006
STATUS
approved