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!)
A374276 Number of representations of n by the quadratic form x^2 + 3*x*y + y^2 with 0 <= x <= y. 1
1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,122
LINKS
FORMULA
a(A031363(n)) > 0.
EXAMPLE
121 = 0^2 + 3*0*11 + 11^2 = 3^2 + 3*3*7 + 7^2. So a(121) = 2.
MATHEMATICA
a[n_]:=Module[{m=Floor[Sqrt[n]]}, Sum[Sum[Boole[i^2+3i*j+j^2==n], {j, i, m}], {i, 0, m}]]; Array[a, 122, 0] (* Stefano Spezia, Jul 02 2024 *)
PROG
(PARI) a(n) = my(m=sqrtint(n)); sum(i=0, m, sum(j=i, m, i^2+3*i*j+j^2==n));
CROSSREFS
Sequence in context: A364420 A368006 A374061 * A037281 A143241 A308064
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 02 2024
STATUS
approved

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 August 7 14:24 EDT 2024. Contains 375013 sequences. (Running on oeis4.)