A068952 Squares in A068949.
1, 4, 9, 16, 36, 49, 64, 81, 100, 121, 144, 196
Offset: 1
Examples
a(4)=16 since the fourth square in A068949 is 16.
Extensions
a(12) from Giovanni Resta, Jun 27 2018
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.
a(4)=16 since the fourth square in A068949 is 16.
For n = 2, a(2) = 10. The 10th term of A235141 is -1 corresponding to the square radius of an origin centered circle increasing from the open interval(5,8) to exactly 8.
for n=3, a(3) = 11. The eleventh term of A235141 is 1 reflecting an increase in the square radius of the circle from exactly 8 to the open interval of (8,9).
Loeschian number 25 = 5^2 is a term because 25 = x^2 + x*y + y^2 has no solution for positive integers x, y.
isA024614:= proc(n) local x,y; for x from 1 to floor(sqrt(n-1)) do if issqr(4*n-3*x^2) then return true fi od: false end proc: isA024614(0):= false: remove(isA024614, [seq(i^2,i=0..200)]); # Robert Israel, Mar 02 2018
sol[s_] := Solve[0 < x <= y && s == x^2 + x y + y^2, {x, y}, Integers]; Select[Range[0, 100]^2, sol[#] == {}&] (* Jean-François Alcover, Oct 26 2020 *)
is(n,m)=issquare(n,m)&&!setsearch(Set(factor(m)[,1]%6),1) \\ second part is equivalent to is_A230780(m), this is sufficient to test (e.g., to produce a list) if we know that n = m^2. - M. F. Hasler, Mar 04 2018
Comments