A175033 Numbers n such that (ceiling(sqrt(n*n/2)))^2 - n*n/2 = 17/2.
9, 15, 55, 89, 321, 519, 1871, 3025, 10905, 17631, 63559, 102761, 370449, 598935, 2159135, 3490849, 12584361, 20346159, 73347031, 118586105, 427497825, 691170471
Offset: 1
Programs
-
PARI
lista(nn)=for (n=1, nn, if ((ceil(sqrt(n*n/2)))^2 - n*n/2 == 17/2, print1(n, ", "));); \\ Michel Marcus, Jun 02 2013
-
PARI
forstep(n=9,1e9,2, if((sqrtint(n^2\2)+1)^2==(n^2+17)/2, print1(n", "))) \\ Charles R Greathouse IV, Apr 30 2016
Extensions
More terms from Michel Marcus, Jun 02 2013
a(17)-a(22) from Charles R Greathouse IV, Apr 30 2016
Comments