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!)
A257057 Numbers k such that (# squares) = (# nonsquares) in the quarter-squares representation of k. 3

%I #6 Apr 15 2015 15:45:34

%S 3,7,11,13,18,21,24,27,31,34,38,43,46,51,55,57,60,66,70,73,76,83,87,

%T 91,94,99,102,106,111,114,119,123,127,133,136,141,146,150,157,160,165,

%U 171,175,181,183,186,191,198,202,208,211,214,219,227,231,237,241

%N Numbers k such that (# squares) = (# nonsquares) in the quarter-squares representation of k.

%C Every positive integer is a sum of at most four distinct quarter squares; see A257019. The sequences A257056, A257057, A257058 partition the nonnegative integers.

%H Clark Kimberling, <a href="/A257057/b257057.txt">Table of n, a(n) for n = 1..1000</a>

%e Quarter-square representations:

%e r(0) = 0

%e r(1) = 1

%e r(2) = 2

%e r(3) = 2 + 1, so that a(1) = 3

%t z = 400; b[n_] := Floor[(n + 1)^2/4]; bb = Table[b[n], {n, 0, 100}];

%t s[n_] := Table[b[n], {k, b[n + 1] - b[n]}];

%t h[1] = {1}; h[n_] := Join[h[n - 1], s[n]];

%t g = h[100]; r[0] = {0};

%t r[n_] := If[MemberQ[bb, n], {n}, Join[{g[[n]]}, r[n - g[[n]]]]];

%t u = Table[Length[r[n]], {n, 0, z}] (* A257023 *)

%t v = Table[Length[Intersection[r[n], Table[n^2, {n, 0, 1000}]]], {n, 0, z}] (* A257024 *)

%t -1 + Select[Range[0, z], 2 v[[#]] < u[[#]] &] (* A257056 *)

%t -1 + Select[Range[0, z], 2 v[[#]] == u[[#]] &] (* A257057 *)

%t -1 + Select[Range[0, z], 2 v[[#]] > u[[#]] &] (* A257058 *)

%Y Cf. A257019, A000290, A257056, A257058.

%K nonn,easy

%O 1,1

%A _Clark Kimberling_, Apr 15 2015

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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)