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!)
A061857 Triangle in which the k-th item in the n-th row (both starting from 1) is the number of ways in which we can add 2 distinct integers from 1 to n in such a way that the sum is divisible by k. 8

%I #40 Jun 13 2021 03:21:29

%S 0,1,0,3,1,1,6,2,2,1,10,4,4,2,2,15,6,5,3,3,2,21,9,7,5,4,3,3,28,12,10,

%T 6,6,4,4,3,36,16,12,8,8,5,5,4,4,45,20,15,10,9,7,6,5,5,4,55,25,19,13,

%U 11,9,8,6,6,5,5,66,30,22,15,13,10,10,7,7,6,6,5,78,36,26,18,16,12,12,9,8,7,7

%N Triangle in which the k-th item in the n-th row (both starting from 1) is the number of ways in which we can add 2 distinct integers from 1 to n in such a way that the sum is divisible by k.

%C Since the sum of two distinct integers from 1 to n can be as much as 2n-1, this triangular table cannot show all the possible cases. For larger triangles showing all solutions, see A220691 and A220693. - _Antti Karttunen_, Feb 18 2013 [based on _Robert Israel_'s mail, May 07 2012]

%H Reinhard Zumkeller, <a href="/A061857/b061857.txt">Rows n = 1..150 of triangle, flattened</a>

%H Stackexchange, <a href="http://math.stackexchange.com/questions/142323/sequence-generation/142364">Question 142323</a>

%H <a href="/index/Su#subsetsums">Index entries for sequences related to subset sums modulo m</a>

%F From _Robert Israel_, May 08 2012: (Start)

%F Let n+1 = b mod k with 0 <= b < k, q = (n+1-b)/k. Let k = c mod 2, c = 0 or 1.

%F If b = 0 or 1 then a(n,k) = q^2*k/2 + q*b - 2*q - b + 1 + c*q/2.

%F If b >= (k+3)/2 then a(n,k) = q^2*k/2 + q*b - 2*q + b - 1 - k/2 + c*(q+1)/2.

%F Otherwise a(n,k) = q^2*k/2 + q*b - 2*q + c*q/2. (End)

%e The second term on the sixth row is 6 because we have 6 solutions: {1+3, 1+5, 2+4, 2+6, 3+5, 4+6} and the third term on the same row is 5 because we have solutions {1+2,1+5,2+4,3+6,4+5}.

%e Triangle begins:

%e 0;

%e 1, 0;

%e 3, 1, 1;

%e 6, 2, 2, 1;

%e 10, 4, 4, 2, 2;

%e 15, 6, 5, 3, 3, 2;

%e 21, 9, 7, 5, 4, 3, 3;

%e 28, 12, 10, 6, 6, 4, 4, 3;

%e 36, 16, 12, 8, 8, 5, 5, 4, 4;

%e 45, 20, 15, 10, 9, 7, 6, 5, 5, 4;

%p [seq(DivSumChoose2Triangle(j),j=1..120)]; DivSumChoose2Triangle := (n) -> nops(DivSumChoose2(trinv(n-1),(n-((trinv(n-1)*(trinv(n-1)-1))/2))));

%p DivSumChoose2 := proc(n,k) local a,i,j; a := []; for i from 1 to (n-1) do for j from (i+1) to n do if(0 = ((i+j) mod k)) then a := [op(a),[i,j]]; fi; od; od; RETURN(a); end;

%t a[n_, 1] := n*(n-1)/2; a[n_, k_] := Module[{r}, r = Reduce[1 <= i < j <= n && Mod[i + j, k] == 0, {i, j}, Integers]; Which[Head[r] === Or, Length[r], Head[r] === And, 1, r === False, 0, True, Print[r, " not parsed"]]]; Table[a[n, k], {n, 1, 13}, {k, 1, n}] // Flatten (* _Jean-François Alcover_, Mar 04 2014 *)

%o (Haskell)

%o a061857 n k = length [()| i <- [2..n], j <- [1..i-1], mod (i + j) k == 0]

%o a061857_row n = map (a061857 n) [1..n]

%o a061857_tabl = map a061857_row [1..]

%o -- _Reinhard Zumkeller_, May 08 2012

%o (Scheme): (define (A061857 n) (A220691bi (A002024 n) (A002260 n))) - _Antti Karttunen_, Feb 18 2013. Needs A220691bi from A220691.

%Y This is the lower triangular region of square array A220691. See A220693 for all nonzero solutions.

%Y The left edge (first diagonal) of the triangle: A000217, the second diagonal is given by C(((n+(n mod 2))/2), 2)+C(((n-(n mod 2))/2), 2) = A002620, the third diagonal by A058212, the fourth by A001971, the central column by A042963? trinv is given at A054425. Cf. A061865.

%K nonn,tabl

%O 1,4

%A _Antti Karttunen_, May 11 2001

%E Offset corrected by _Reinhard Zumkeller_, May 08 2012

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 May 5 14:32 EDT 2024. Contains 372275 sequences. (Running on oeis4.)