OFFSET
1,2
COMMENTS
The interval between terms reflects the number of ways a square integer can be partitioned into the sum of two square integers in an ordered pair. As examples, the increase from a(1) to a(2) from 1 to 3 is due to the inclusion of (1,2) and (2,1); and the increase from a(2) to a(3) is due to the inclusion of (2,2). Larger intervals occur when there are more combinations, such as, between a(17) and a(18) when (1,7), (7,1), and (5,5) are included.
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 1..10000 (terms 1..2623 from Rajan Murthy).
L. Edson Jeffery, Illustration of the first few terms.
Rajan Murthy, Graph of sequence
Rajan Murthy, Graph of intervals
Rajan Murthy, Diagram depicting A(13)
EXAMPLE
When radius of the circle exceeds 2^(1/2), one square is completely within the circle until the radius reaches 5^(1/2) when three squares are completely within the circle.
MATHEMATICA
(* An empirical solution *) terms = 100; f[r_] := Sum[Floor[Sqrt[r^2 - n^2]], {n, 1, Floor[r]}]; Clear[g]; g[m_] := g[m] = Union[Table[f[Sqrt[s]], {s, 2, m }]][[1 ;; terms]]; g[m = dm = 4*terms]; g[m = m + dm]; While[g[m] != g[m - dm], Print[m]; m = m + dm]; A232499 = g[m] (* Jean-François Alcover, Mar 06 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Rajan Murthy and Vale Murthy, Nov 24 2013
STATUS
approved