login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A198772 Numbers having exactly one representation by the quadratic form x^2 + xy + y^2 with 0 <= x <= y. 9

%I #17 Jun 21 2018 08:35:22

%S 0,1,3,4,7,9,12,13,16,19,21,25,27,28,31,36,37,39,43,48,52,57,61,63,64,

%T 67,73,75,76,79,81,84,93,97,100,103,108,109,111,112,117,121,124,127,

%U 129,139,144,148,151,156,157,163,171,172,175,181,183,189,192,193

%N Numbers having exactly one representation by the quadratic form x^2 + xy + y^2 with 0 <= x <= y.

%H Reinhard Zumkeller, <a href="/A198772/b198772.txt">Table of n, a(n) for n = 1..10000</a>

%F A088534(a(n)) = 1.

%F a(n) = A034022(n) for n <= 32.

%e a(20) = 48 = 4^2 + 4*4 + 4^2, A088534(48) = 1;

%e a(21) = 52 = 2^2 + 2*6 + 6^2, A088534(52) = 1.

%t amax = 200; xmax = Sqrt[amax] // Ceiling; Clear[f]; f[_] = 0; Do[q = x^2 + x y + y^2; f[q] = f[q] + 1, {x, 0, xmax}, {y, x, xmax}];

%t A198772 = Select[Range[0, 3 xmax^2], # <= amax && f[#] == 1&] (* _Jean-François Alcover_, Jun 21 2018 *)

%o (Haskell)

%o a198772 n = a198772_list !! (n-1)

%o a198772_list = filter ((== 1) . a088534) a003136_list

%o (Julia)

%o function isA198772(n)

%o M = Int(round(2*sqrt(n/3)))

%o count = 0

%o for y in 0:M, x in 0:y

%o n == x^2 + y^2 + x*y && (count += 1)

%o count == 2 && break

%o end

%o return count == 1

%o end

%o A198772list(upto) = [n for n in 0:upto if isA198772(n)]

%o A198772list(193) |> println # _Peter Luschny_, Mar 17 2018

%Y Subsequence of Loeschian numbers A003136.

%Y Complement of A118886 with respect to A003136.

%Y Cf. A198773, A198774, A198775.

%K nonn

%O 1,3

%A _Reinhard Zumkeller_, Oct 30 2011

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)