OFFSET
1,3
COMMENTS
Least squared radius of a circle around a grid point of the hexagonal lattice such that the number of grid points on this circle is not smaller than the number of grid points on any circle around a grid point of the hexagonal lattice with smaller radius. a(1) = 0 by convention.
LINKS
Hugo Pfoertner, Table of n, a(n) for n = 1..163
PROG
(PARI) \\ after M. F. Hasler's A088534(n, d)
r2=0; for(k=0, 3500, my(a088534=sum(x=0, sqrt(k\3), sum(y=max(x, sqrtint(k-x^2)\2), sqrtint(k-2*x^2), x^2+x*y+y^2==k))); if(a088534>=r2, r2=a088534; print1(k, ", ")))
CROSSREFS
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Sep 12 2019
STATUS
approved