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!)
A245575 Number of ways of writing n as the sum of two quarter-squares (cf. A002620). 5

%I #22 Mar 13 2022 18:55:59

%S 1,2,3,2,3,2,4,2,3,2,4,2,3,4,2,2,4,2,5,0,4,4,4,0,3,4,4,2,2,4,2,4,5,0,

%T 4,0,6,4,2,2,3,2,6,2,2,4,4,0,4,2,5,4,2,2,2,4,4,2,6,0,3,4,4,0,2,6,4,2,

%U 4,2,2,0,7,4,4,0,6,0,4,2,2,6,2,2,5,4

%N Number of ways of writing n as the sum of two quarter-squares (cf. A002620).

%C a(n) is also the number of times n appears in the triangle A338796, or equivalently, the number of positive integer solutions of the equation A338796(x, y) = n for y <= x. - _Stefano Spezia_, Mar 03 2022

%H Reinhard Zumkeller, <a href="/A245575/b245575.txt">Table of n, a(n) for n = 0..10000</a>

%F a(A182834(n)) mod 2 = 0; a(A007550(n)) mod 2 = 1;

%F a(A240952(n)) = n and a(A240952(m)) <> n for m < a(n);

%F a(A245585(n)) = 0.

%e a(10) = #{9+1, 6+4, 4+6, 1+9} = 4;

%e a(11) = #{9+2, 2+9} = 2;

%e a(12) = #{12+0, 6+6, 0+12} = 3;

%e a(13) = #{12+1, 9+4, 4+9, 1+12} = 4;

%e a(14) = #{6+1, 1+6} = 2;

%e a(15) = #{9+6, 6+9} = 2;

%e a(16) = #{16+0, 12+4, 4+12, 0+16} = 4;

%e a(17) = #{16+1, 1+16} = 2;

%e a(18) = #{16+2, 12+6, 9+9, 6+12, 2+16} = 5;

%e a(19) = #{} = 0;

%e a(20) = #{20+0, 16+4, 4+16, 0+20} = 4.

%t qsQ[n_] := qsQ[n] = With[{s = Sqrt[n]}, Which[IntegerQ[s], True, n == Floor[s] (Floor[s]+1), True, True, False]]; a[n_] := Count[Range[0, n], k_ /; qsQ[k] && qsQ[n-k]]; Array[a, 100, 0] (* _Jean-François Alcover_, May 08 2017 *) (* or *)

%t u[{x_,y_}] := 2-Boole[x==y]; a[n_] := Total[u /@ IntegerPartitions[n, {2}, Floor[Range[1 + 2 Sqrt@ n]^2/4]]]; Array[a, 100, 0] (* _Giovanni Resta_, May 08 2017 *)

%o (Haskell)

%o a245575 n = a245575_list !! n

%o a245575_list = f 0 [] $ tail a002620_list where

%o f u vs ws'@(w:ws)

%o | u < w = (sum $ map (a240025 . (u -)) vs) : f (u + 1) vs ws'

%o | otherwise = f u (w : vs) ws

%Y Cf. A002620, A007550, A182834, A240025, A240952, A245585, A338796.

%K nonn

%O 0,2

%A _Reinhard Zumkeller_, Aug 04 2014

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